Fix : Dockerfile workdir

This commit is contained in:
2024-07-31 16:11:29 +02:00
parent 9d8c536ffa
commit e4dfbe0484
+1
View File
@@ -7,6 +7,7 @@ RUN npx nest build
# étape de production
FROM node:lts-alpine AS production-stage
WORKDIR /app
COPY --from=build-stage /app/dist/ /app
COPY --from=build-stage /app/node_modules/ /app/node_modules
EXPOSE 8765