Files
MSE-SoftwEng/web-app/Dockerfile
Klagarge b83e30e5b5 fix(web-app): path to copy on docker image
Because the Fribourg GitLab need a relative path from the root of the project and not from the Dockerfile...
Is it possible to see one time a correct installation of GitLab somewhere?!

Signed-off-by: Klagarge <remi@heredero.ch>
2025-05-20 11:27:12 +02:00

12 lines
112 B
Docker

FROM node:22.15-slim
WORKDIR /app
COPY ./web-app .
RUN npm install
EXPOSE 8080
CMD ["npm", "run", "serve"]