diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..8801c5d9a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ + + +# syntax=docker/dockerfile:1 + +FROM node:lts-alpine + +WORKDIR /app + +COPY . . + +RUN yarn install --production + +CMD ["node", "src/index.js"] + +EXPOSE 3000 +