Skip to content

Commit

Permalink
Merge pull request stop-covid19-hyogo#85 from yoshi1125hisa/patch-1
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
ohyama authored Mar 15, 2020
2 parents ca82c56 + 65fc70f commit e570058
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
FROM node:10.19-alpine

WORKDIR /app
ARG project_dir=/app

WORKDIR ${project_dir}

COPY package.json yarn.lock ./

RUN yarn install
RUN set -x && \
yarn install

COPY . ./app
COPY . ${project_dir}

EXPOSE 3000
ENV HOST 0.0.0.0
Expand Down

0 comments on commit e570058

Please sign in to comment.