Spaces:
Build error
Build error
lucianotonet
commited on
Commit
•
91cda79
1
Parent(s):
e87adbc
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -19,7 +19,7 @@ RUN pip install pygit2==1.12.2
|
|
19 |
COPY . /code/
|
20 |
|
21 |
# Instalar dependências Python
|
22 |
-
RUN pip install
|
23 |
|
24 |
# Expor porta 7860
|
25 |
EXPOSE 7860
|
@@ -29,3 +29,4 @@ USER user
|
|
29 |
|
30 |
# Comando de inicialização
|
31 |
CMD ["python", "entry_with_update.py", "--preset", "realistic", "--share", "--always-high-vram"]
|
|
|
|
19 |
COPY . /code/
|
20 |
|
21 |
# Instalar dependências Python
|
22 |
+
RUN pip install -r requirements_docker.txt
|
23 |
|
24 |
# Expor porta 7860
|
25 |
EXPOSE 7860
|
|
|
29 |
|
30 |
# Comando de inicialização
|
31 |
CMD ["python", "entry_with_update.py", "--preset", "realistic", "--share", "--always-high-vram"]
|
32 |
+
|