Heartbeat / dockerfile
Sankie005's picture
initial commit
d8548c0 verified
raw
history blame contribute delete
315 Bytes
FROM python:3.11
ENV PYTHONUNBUFFERED 1
WORKDIR /usr/src/app
COPY . .
RUN apt-get -y update && apt-get -y upgrade && apt-get install -y --no-install-recommends ffmpeg
RUN pip install -r requirements.txt --no-cache-dir
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python", "app.py", "--port", "7860"]