hls / Dockerfile
newservers's picture
Update Dockerfile
7ee7bf5 verified
Raw
History Blame Contribute Delete
241 Bytes
FROM node:20-slim
WORKDIR /app
COPY . .
RUN apt update && \
apt install -y ffmpeg && \
apt clean && rm -rf /var/lib/apt/lists/*
RUN npm install express cors axios dotenv
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["node", "index.js"]