rogerxavier commited on
Commit
db7e5d1
1 Parent(s): c5eb27e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM registry.hf.space/rogerxavier-moviepy-with-manga:latest
2
 
3
  RUN apt update && apt install -y sudo imagemagick
4
  # RUN apt upgrade -y
@@ -13,10 +13,10 @@ RUN pip install -U pip
13
  COPY requirements.txt .
14
  RUN pip install -r requirements.txt
15
 
16
- COPY app.py .
17
 
18
 
19
  EXPOSE 7860
20
 
21
 
22
- CMD ["python", "app.py"]
 
1
+
2
 
3
  RUN apt update && apt install -y sudo imagemagick
4
  # RUN apt upgrade -y
 
13
  COPY requirements.txt .
14
  RUN pip install -r requirements.txt
15
 
16
+ COPY server.py .
17
 
18
 
19
  EXPOSE 7860
20
 
21
 
22
+ CMD ["python", "server.py"]