diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6acab61 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM node:19-alpine +WORKDIR /app + +ENV NODE_ENV production + +EXPOSE 8080 +ENV PORT 8080 + +CMD node server.js \ No newline at end of file