FROM node:20-alpine RUN apk add --no-cache git RUN git clone https://github.com/cinepro-org/core.git /app WORKDIR /app RUN npm install RUN npm run build ENV PORT=7860 ENV HOST=0.0.0.0 ENV NODE_ENV=production ENV CACHE_TYPE=memory EXPOSE 7860 CMD ["npm", "start"]