Files
lander/Dockerfile
2025-08-09 02:13:58 +02:00

12 lines
136 B
Docker
Executable File

FROM node:22-alpine
WORKDIR /app
COPY . .
RUN npm install
RUN npx next build
CMD ["npx", "next", "start", "--hostname", "0.0.0.0"]