diff --git a/app/Dockerfile b/app/Dockerfile new file mode 100644 index 0000000..e9e336c --- /dev/null +++ b/app/Dockerfile @@ -0,0 +1,7 @@ + # syntax=docker/dockerfile:1 + FROM node:12-alpine + RUN apk add --no-cache python g++ make + WORKDIR /app + COPY . . + RUN yarn install --production + CMD ["node", "src/index.js"] \ No newline at end of file