funapi / Dockerfile
imperialwool's picture
Update Dockerfile
c6a149f
raw
history blame
183 Bytes
FROM debian:latest
RUN apt update
RUN apt install ffmpeg -y
FROM python:3.10
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["python3.10", "app.py"]