Browse Source

🐳 First dockerfile

main
LecomteAdrien 5 years ago
parent
commit
6d55acf0e7
  1. 11
      Dockerfile

11
Dockerfile

@ -0,0 +1,11 @@
FROM node:dubnium
WORKDIR /nest-server
COPY . .
RUN yarn install
RUN yarn build
CMD ["yarn", "serve"]
Loading…
Cancel
Save