diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0f80307 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM node:alpine + +WORKDIR /app + +COPY package.json /app +RUN npm install +COPY . /app + +CMD node index.js + +EXPOSE 8080 \ No newline at end of file