diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3180780 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM node:lts-alpine + +RUN apk update + +WORKDIR /app + +COPY . ./ + +RUN yarn + +RUN yarn build + +EXPOSE 5000 + +ENTRYPOINT ["yarn", "start"]