diff --git a/dockerFile b/dockerFile new file mode 100644 index 00000000..12e366a8 --- /dev/null +++ b/dockerFile @@ -0,0 +1,11 @@ +FROM node:slim + +WORKDIR /app + +COPY . /app + +RUN npm install + +EXPOSE 3000 + +CMD npm start