commit
747bc71a0e
1 changed files with 7 additions and 0 deletions
7
Dockerfile
Normal file
7
Dockerfile
Normal 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"]
|
Reference in a new issue