Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.

Commit

Permalink
Removed Yarn as a hard dependency. Replace it with a package-lock.jso…
Browse files Browse the repository at this point in the history
…n file.
  • Loading branch information
Brian Cottingham committed Aug 6, 2018
1 parent c61301a commit 4f6b043
Show file tree
Hide file tree
Showing 2 changed files with 2,190 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
FROM node:10

RUN npm install yarn

WORKDIR /app
ADD package.json /app/package.json
ADD yarn.lock /app/yarn.lock
RUN yarn install
ADD package-lock.json /app/package-lock.json
RUN npm install

ADD . /app

Expand Down
Loading

0 comments on commit 4f6b043

Please sign in to comment.