Spaces:
Sleeping
Sleeping
File size: 239 Bytes
e8784a4 521aed0 0848a83 e8784a4 0848a83 5e890ef e8784a4 4354b4a e8784a4 4354b4a 521aed0 4354b4a e8784a4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM node:24-bullseye
WORKDIR /app
RUN apt-get update && apt-get install -y bash git && rm -rf /var/lib/apt/lists/*
RUN npm install -g serve
COPY . .
RUN npm install
RUN npm run build
ENV PORT=7860
EXPOSE 7860
CMD ["sh", "start.sh"] |