mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-08 04:25:24 +00:00
13 lines
208 B
Plaintext
13 lines
208 B
Plaintext
FROM python:3.11-slim
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
ENV TEMP /tmp
|
|
RUN mkdir -p $TEMP
|
|
|
|
RUN apt-get update && apt-get install -y ffmpeg
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
CMD ["python", "run.py"] |