Spaces:
Build error
Build error
File size: 688 Bytes
54a4c87 fc435ec 54a4c87 fc435ec 3d9eda2 c2771cc 54a4c87 5eb3aa9 54a4c87 3d9eda2 e13e9ee 54a4c87 c2771cc 3d9eda2 c2771cc 54a4c87 fc435ec 54a4c87 5eb3aa9 54a4c87 3d9eda2 91cda79 870bcf8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
FROM nvidia/cuda:12.3.1-base-ubuntu22.04
ENV DEBIAN_FRONTEND noninteractive
ENV CMDARGS --listen
# Instalar dependências do sistema
RUN apt-get update -y && \
apt-get install -y git python3 python3-pip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Criar diretório de trabalho
WORKDIR /code
# Instalar pygit2
RUN python3 -m pip install pygit2==1.12.2
# Copiar código do aplicativo
COPY . /code/
# Instalar dependências Python
RUN python3 -m pip install pygit2
# Expor porta 7860
EXPOSE 7860
# Executar como usuário não root
USER user
# Comando de inicialização
CMD ["python3", "entry_with_update.py", "--preset", "realistic", "--share", "--always-high-vram"]
|