Spaces:
Runtime error
Runtime error
File size: 296 Bytes
4efe6b5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# syntax=docker/dockerfile:1
FROM python:3.10-bullseye
EXPOSE 6969
WORKDIR /app
RUN apt update && apt install -y -qq ffmpeg aria2 && apt clean
COPY . .
RUN pip3 install --no-cache-dir -r requirements.txt
VOLUME [ "/app/logs/weights", "/app/opt" ]
ENTRYPOINT [ "python3" ]
CMD ["app.py"]
|