StremioOMG / Dockerfile
ledbag's picture
Update Dockerfile
d0045f5 verified
Raw
History Blame Contribute Delete
235 Bytes
FROM node:18-slim
WORKDIR /app
RUN apt-get update && apt-get install -y git python3 python3-pip && \
git clone https://github.com/mccoy88f/OMG-Premium-TV.git .
RUN npm install
ENV PORT=7860
EXPOSE 7860
CMD ["node", "index.js"]