diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..f16b806a2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM node:14 + +WORKDIR /usr/app/data + +COPY package*.json ./ + +RUN npm install + +COPY . . + +EXPOSE 8080 + +CMD ["node","app.js"]