funapi / Dockerfile
imperialwool's picture
yees
fdd1252
raw
history blame
244 Bytes
FROM debian:latest
COPY . /app
WORKDIR /app
RUN apt update && apt install ffmpeg software-properties-common python3 python3-pip python-is-python3 -y
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
CMD ["python", "app.py"]