tryypp / Dockerfile
rkservers's picture
Update Dockerfile
39afdb5 verified
raw
history blame contribute delete
211 Bytes
FROM python:3.9
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get install -y ffmpeg sudo && pip install --no-cache-dir flask flask-socketio pillow requests eventlet
EXPOSE 7860
CMD ["python", "app.py"]