funapi / Dockerfile
woolbot's picture
attempt to optimize building
3fe1ddd
raw history blame
No virus
211 Bytes
FROM python:3.11.1-bullseye
COPY . /app
RUN chmod -R 777 /app
WORKDIR /app
RUN apt update && apt install ffmpeg -y
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
CMD ["python", "app.py"]