funapi / Dockerfile
imperialwool's picture
?
b7c10e1
raw
history blame
267 Bytes
FROM debian:latest
COPY . /app
RUN chmod -R 777 /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"]