Add Dockerfile with HOST env var

This commit is contained in:
Neo
2026-02-19 13:12:56 +00:00
parent 9f963a7914
commit ca1a3f88f6

8
Dockerfile Normal file
View File

@@ -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"]