Spaces:
Sleeping
Sleeping
IZERE HIRWA Roger
commited on
Commit
·
34e1a4d
1
Parent(s):
76030e0
- Dockerfile +1 -1
- app.py +0 -1
Dockerfile
CHANGED
@@ -24,7 +24,7 @@ RUN git clone https://github.com/OpenTalker/SadTalker.git /app/SadTalker
|
|
24 |
WORKDIR /app
|
25 |
|
26 |
# Install Python dependencies
|
27 |
-
COPY
|
28 |
RUN pip install --no-cache-dir -r requirements.txt && \
|
29 |
pip install /app/SadTalker
|
30 |
|
|
|
24 |
WORKDIR /app
|
25 |
|
26 |
# Install Python dependencies
|
27 |
+
COPY requirements.txt .
|
28 |
RUN pip install --no-cache-dir -r requirements.txt && \
|
29 |
pip install /app/SadTalker
|
30 |
|
app.py
CHANGED
@@ -51,5 +51,4 @@ def generate():
|
|
51 |
|
52 |
if __name__ == '__main__':
|
53 |
os.makedirs('static/uploads', exist_ok=True)
|
54 |
-
|
55 |
app.run(host='0.0.0.0', port=7860)
|
|
|
51 |
|
52 |
if __name__ == '__main__':
|
53 |
os.makedirs('static/uploads', exist_ok=True)
|
|
|
54 |
app.run(host='0.0.0.0', port=7860)
|