Skip to content

Commit

Permalink
initial attempt, getting to work online
Browse files Browse the repository at this point in the history
  • Loading branch information
snychka committed May 7, 2020
1 parent b19299b commit f79852b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
FROM node:12.13.1

ENV APP_DIR /src/app

RUN mkdir -p $APP_DIR

WORKDIR ${APP_DIR}

ADD ./package.json .

RUN npm install

COPY . .

RUN chown -R node:node .

USER node

0 comments on commit f79852b

Please sign in to comment.