diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..bc893b3e --- /dev/null +++ b/Dockerfile @@ -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"]