File size: 358 Bytes
633cb62
6ccea25
633cb62
6ccea25
 
633cb62
6ccea25
 
633cb62
 
6ccea25
633cb62
 
 
 
 
 
 
 
6ccea25
633cb62
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM python:3.10

# working directory
WORKDIR /app

# copy files
COPY . .

# system packages
RUN apt-get update && apt-get install -y ffmpeg

# upgrade pip
RUN pip install --upgrade pip setuptools wheel

# install python deps
RUN pip install --no-cache-dir -r requirements.txt

# launch app
ENV GRADIO_SERVER_NAME=0.0.0.0
EXPOSE 7860
CMD ["python", "run.py"]