Files
lander/Dockerfile

12 lines
136 B
Docker
Raw Permalink Normal View History

2025-08-09 02:13:58 +02:00
FROM node:22-alpine
WORKDIR /app
COPY . .
RUN npm install
RUN npx next build
CMD ["npx", "next", "start", "--hostname", "0.0.0.0"]