funapi / Dockerfile
imperialwool's picture
why it stopped lol
d213f67
raw
history blame
267 Bytes
FROM debian:latest
COPY . /app
RUN chmod -R 777 /app
WORKDIR /app
RUN apt update && apt install ffmpeg python3 python3-pip python-is-python3 software-properties-common -y
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
CMD ["python", "app.py"]