Spaces:
Build error
Build error
lucianotonet
commited on
Commit
•
d48155a
1
Parent(s):
3d9eda2
Update Dockerfile
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
FROM nvidia/cuda:12.3.1-base-ubuntu22.04
|
2 |
|
3 |
ENV DEBIAN_FRONTEND noninteractive
|
@@ -10,16 +11,16 @@ RUN apt-get update -y && \
|
|
10 |
rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
# Criar diretório de trabalho
|
13 |
-
WORKDIR /
|
14 |
|
15 |
# Instalar pygit2
|
16 |
RUN python3 -m pip install pygit2==1.12.2
|
17 |
|
18 |
# Copiar código do aplicativo
|
19 |
-
COPY . /
|
20 |
|
21 |
# Instalar dependências Python
|
22 |
-
RUN python3 -m pip install
|
23 |
|
24 |
# Expor porta 7860
|
25 |
EXPOSE 7860
|
|
|
1 |
+
|
2 |
FROM nvidia/cuda:12.3.1-base-ubuntu22.04
|
3 |
|
4 |
ENV DEBIAN_FRONTEND noninteractive
|
|
|
11 |
rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
# Criar diretório de trabalho
|
14 |
+
WORKDIR /app
|
15 |
|
16 |
# Instalar pygit2
|
17 |
RUN python3 -m pip install pygit2==1.12.2
|
18 |
|
19 |
# Copiar código do aplicativo
|
20 |
+
COPY . /app/
|
21 |
|
22 |
# Instalar dependências Python
|
23 |
+
RUN python3 -m pip install -r requirements_docker.txt
|
24 |
|
25 |
# Expor porta 7860
|
26 |
EXPOSE 7860
|