File size: 215 Bytes
9ac8573
 
 
 
 
4e1615e
9ac8573
 
 
2e47f96
1
2
3
4
5
6
7
8
9
10
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
ENV NEXT_PUBLIC_API_URL=https://cacti-prowess-frivolous.ngrok-free.dev
RUN npm run build
EXPOSE 3000
ENV PORT 3000
CMD ["npm", "start"]