Skip to content

Commit

Permalink
Fixing build-info.json placement (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
brightonsbox authored Jan 12, 2021
1 parent ec4f5ed commit 27a10a5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -63,4 +65,4 @@ EXPOSE 3000
ENV NODE_ENV='production'
USER 2000

CMD [ "npm", "start" ]
CMD [ "npm", "start" ]

0 comments on commit 27a10a5

Please sign in to comment.