Skip to content

Commit

Permalink
fix: copy correct sourcefiles for entrypoint to work
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Mar 16, 2021
1 parent 9e90ad5 commit 9271cbc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ USER root

# add source files
RUN mkdir "uport-did-driver"
ADD LICENSE package.json yarn.lock README.md src/ uport-did-driver/
RUN cd uport-did-driver && yarn install --frozen-lockfile
ADD LICENSE package.json yarn.lock README.md uport-did-driver/
ADD src/ uport-did-driver/src/
RUN cd uport-did-driver && yarn install --prod --frozen-lockfile

EXPOSE 8081

Expand Down

0 comments on commit 9271cbc

Please sign in to comment.