diff --git a/Dockerfile b/Dockerfile index 888f39c..87aa964 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ -FROM node:10-alpine +FROM node:12 WORKDIR /app COPY . ./ RUN yarn RUN yarn build +VOLUME /app EXPOSE 3000 CMD [ "yarn", "start" ]