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