File size: 400 Bytes
b875f96
510f2a6
9672c1c
 
 
 
 
 
 
 
 
 
 
 
 
0172658
9672c1c
 
 
 
 
6509ecc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM registry.hf.space/rogerxavier-moviepy-with-manga:latest

RUN apt update && apt install -y sudo imagemagick
# RUN apt upgrade -y

RUN pip install -U pip
# #RUN pip install -U pyyaml
# RUN pip install -U runway-python 
# #runway --force-reinstall
# #RUN pip install -U tensorflow


COPY requirements.txt .
RUN pip install -r requirements.txt

COPY app.py .


EXPOSE 7860


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