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>
12 lines
112 B
Docker
12 lines
112 B
Docker
FROM node:22.15-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./web-app .
|
|
|
|
RUN npm install
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["npm", "run", "serve"]
|