Browse Source

workflow

main
antoine 6 years ago
parent
commit
18d97e0265
  1. 6
      Dockerfile

6
Dockerfile

@ -1,11 +1,13 @@
FROM node:12.18.4
WORKDIR /usr/scr/app
WORKDIR /app
COPY package.json yarn.lock ./
COPY . .
EXPOSE 3000
RUN yarn global add node-gyp && yarn install
CMD [ "yarn", "start"]
CMD [ "yarn", "start"]
Loading…
Cancel
Save