fix docker build

This commit is contained in:
SrGooglo 2024-02-07 00:50:47 +01:00
parent b4f7b0f65d
commit 73c0f388d2
2 changed files with 1 additions and 1 deletions

View File

@ -14,8 +14,8 @@ COPY --chown=node:node . .
RUN chmod -R 777 /home/node/app RUN chmod -R 777 /home/node/app
RUN cd /home/node/app/api && npm install -D --force
RUN cd /home/node/app/web && npm install -D --force RUN cd /home/node/app/web && npm install -D --force
RUN cd /home/node/app/web && npm run build RUN cd /home/node/app/web && npm run build
CMD ["node", "/home/node/app/api/index.js"] CMD ["node", "/home/node/app/api/index.js"]