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