diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..031b8ef --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM node:12.2.0-alpine + +WORKDIR /app + +COPY . /app + +RUN apk update && apk add bash + +RUN npm install + +RUN npm install express + +EXPOSE 3000 + +CMD ["node","index.js"]