Plex-Cine / Dockerfile
plex-media's picture
Create Dockerfile
18e4143 verified
Raw
History Blame Contribute Delete
270 Bytes
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"]