AlexandreScriptsMT commited on
Commit
d24a973
·
verified ·
1 Parent(s): 7d2bda7

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -20
Dockerfile DELETED
@@ -1,20 +0,0 @@
1
- FROM python:3.10-slim
2
-
3
- # Instala dependências mínimas do sistema
4
- RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/*
5
-
6
- # Configura o usuário do Space
7
- RUN useradd -m -u 1000 user
8
- USER user
9
- ENV HOME=/home/user \
10
- PATH=/home/user/.local/bin:$PATH
11
- WORKDIR $HOME/app
12
-
13
- # INSTALAÇÃO DIRETA (Link corrigido e completo)
14
- RUN pip install --no-cache-dir \
15
- "https://github.com" \
16
- fastapi uvicorn gradio
17
-
18
- # Copia os arquivos e inicia o app
19
- COPY --chown=user . $HOME/app
20
- CMD ["python", "app.py"]