diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0b18d60 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM node:20-alpine +WORKDIR /app +ENV HOST=0.0.0.0 +ENV NODE_ENV=production +COPY . . +RUN npm install && npm run build +EXPOSE 3000 +CMD ["node", ".next/standalone/server.js"]