Merge pull request #148 from ynerant/master

Add Dockerfile
This commit is contained in:
Bruno Windels 2020-10-21 14:14:07 +00:00 committed by GitHub
commit 747bc71a0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM node:alpine3.12
RUN apk add --no-cache git
COPY . /code
WORKDIR /code
RUN yarn install
EXPOSE 3000
ENTRYPOINT ["yarn", "start"]