diff --git a/Dockerfile b/Dockerfile index eb77222..d1463f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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