histlearn commited on
Commit
68ca5e6
1 Parent(s): 8f472b1

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +21 -0
Dockerfile ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+
3
+ # Instalar dependências do sistema
4
+ RUN apt-get update && apt-get install -y \
5
+ ghostscript \
6
+ python3-opencv \
7
+ libgl1-mesa-glx \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
+ # Configurar diretório de trabalho
11
+ WORKDIR /code
12
+
13
+ # Copiar requirements e instalar dependências Python
14
+ COPY requirements.txt .
15
+ RUN pip install --no-cache-dir -r requirements.txt
16
+
17
+ # Copiar o código da aplicação
18
+ COPY app.py .
19
+
20
+ # Comando para iniciar a aplicação
21
+ CMD ["python", "app.py"]