diff --git a/Dockerfile b/Dockerfile index 7ff37af..a1bde60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,9 +47,11 @@ RUN apt-get autoremove -y && \ COPY --from=build --chown=appuser:appgroup \ /app/package.json \ /app/package-lock.json \ - /app/build-info.json \ ./ +COPY --from=build --chown=appuser:appgroup \ + /app/build-info.json ./dist/build-info.json + COPY --from=build --chown=appuser:appgroup \ /app/assets ./assets @@ -63,4 +65,4 @@ EXPOSE 3000 ENV NODE_ENV='production' USER 2000 -CMD [ "npm", "start" ] \ No newline at end of file +CMD [ "npm", "start" ]