diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0a53eb5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:12-alpine + WORKDIR /app + COPY . . + RUN npm install + CMD ["/bin/sh", "-c", "npm start"] +