File size: 206 Bytes
3318ac7 | 1 2 3 4 5 6 7 8 9 10 | FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
ENV NEXT_PUBLIC_API_URL=https://your-ngrok-url.ngrok-free.app
RUN npm run build
EXPOSE 3000
ENV PORT 3000
CMD ["npm", "start"] |