StreamingCommunity/dockerfile
2024-04-12 12:23:42 +02:00

11 lines
159 B
Plaintext

FROM python:3.11-slim
COPY . /app
WORKDIR /app
ENV TEMP /tmp
RUN mkdir -p $TEMP
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "run.py"]