File size: 434 Bytes
b8d917a
728b0ed
 
 
 
 
7f42663
53192fa
20b31d4
53192fa
728b0ed
d2320fc
309d83d
c70ddf8
309d83d
6042f0d
2675220
2e24dcd
b8d917a
9f62ba0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM python:3.8-slim

WORKDIR /app

COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install gradio numpy gtts pydub tensorflow matplotlib opencv-python
RUN apt-get update && apt-get install -y libgl1-mesa-glx
RUN pip install --upgrade gradio


COPY Data /app3/Data
COPY ROCAS.token.txt /app3/ROCAS.token.txt
COPY pesos10.npy /app3/pesos10.npy

RUN chmod 777 /app3

COPY . .

CMD ["python", "app.py"]