Skip to content

Commit

Permalink
Merge pull request #20 from PhilipWhiteside/fix-package-in-dockerfile
Browse files Browse the repository at this point in the history
Fix package in dockerfile
  • Loading branch information
cjquines committed Oct 9, 2020
2 parents aaa4194 + 946e1f4 commit b174710
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ WORKDIR $WORKDIR
RUN addgroup -S $GROUP \
&& adduser -S $USER -G $GROUP -D \
&& chown $USER:$GROUP $WORKDIR
USER qboard
USER $USER

COPY ./ .

RUN npm install nwb@0.25.2
RUN npm install
RUN npm run build

ENTRYPOINT ["npm"]
Expand Down

0 comments on commit b174710

Please sign in to comment.