stream / Dockerfile
mrpoddaa's picture
Upload 5 files
ec7d71c verified
raw
history blame contribute delete
245 Bytes
FROM node:18-slim
RUN apt-get update && apt-get install -y \
ffmpeg \
python3 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN mkdir -p uploads
EXPOSE 7860
CMD ["npm", "start"]