lucianotonet commited on
Commit
3d9eda2
1 Parent(s): 870bcf8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -5,7 +5,7 @@ ENV CMDARGS --listen
5
 
6
  # Instalar dependências do sistema
7
  RUN apt-get update -y && \
8
- apt-get install -y git python3-pip && \
9
  apt-get clean && \
10
  rm -rf /var/lib/apt/lists/*
11
 
@@ -13,13 +13,13 @@ RUN apt-get update -y && \
13
  WORKDIR /code
14
 
15
  # Instalar pygit2
16
- RUN pip install pygit2==1.12.2
17
 
18
  # Copiar código do aplicativo
19
  COPY . /code/
20
 
21
  # Instalar dependências Python
22
- RUN pip install pygit2
23
 
24
  # Expor porta 7860
25
  EXPOSE 7860
@@ -28,6 +28,6 @@ EXPOSE 7860
28
  USER user
29
 
30
  # Comando de inicialização
31
- CMD ["python", "entry_with_update.py", "--preset", "realistic", "--share", "--always-high-vram"]
32
 
33
 
 
5
 
6
  # Instalar dependências do sistema
7
  RUN apt-get update -y && \
8
+ apt-get install -y git python3 python3-pip && \
9
  apt-get clean && \
10
  rm -rf /var/lib/apt/lists/*
11
 
 
13
  WORKDIR /code
14
 
15
  # Instalar pygit2
16
+ RUN python3 -m pip install pygit2==1.12.2
17
 
18
  # Copiar código do aplicativo
19
  COPY . /code/
20
 
21
  # Instalar dependências Python
22
+ RUN python3 -m pip install pygit2
23
 
24
  # Expor porta 7860
25
  EXPOSE 7860
 
28
  USER user
29
 
30
  # Comando de inicialização
31
+ CMD ["python3", "entry_with_update.py", "--preset", "realistic", "--share", "--always-high-vram"]
32
 
33