Browse Source

Create Dockerfile

main
NicolasLepinette 6 years ago
committed by GitHub
parent
commit
bc93f63b1b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      Dockerfile

13
Dockerfile

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