rogerxavier commited on
Commit
9672c1c
1 Parent(s): cde2df6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +22 -2
Dockerfile CHANGED
@@ -1,3 +1,23 @@
1
- FROM guillaumeai/ast:ap2404_v1-255ik
 
2
 
3
- RUN apt update && apt install -y sudo imagemagick
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM
2
+ rogerxavier/moviepy_with_manga
3
 
4
+ RUN apt update && apt install -y sudo imagemagick
5
+ # RUN apt upgrade -y
6
+
7
+ RUN pip install -U pip
8
+ # #RUN pip install -U pyyaml
9
+ # RUN pip install -U runway-python
10
+ # #runway --force-reinstall
11
+ # #RUN pip install -U tensorflow
12
+
13
+
14
+ COPY requirements.txt .
15
+ RUN pip install -r requirements.txt
16
+
17
+ COPY server.py .
18
+
19
+
20
+ EXPOSE 7860
21
+
22
+
23
+ CMD ["python", "server.py"]