histlearn commited on
Commit
bc76aa8
1 Parent(s): 6c00cd0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile CHANGED
@@ -5,8 +5,15 @@ 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
 
@@ -17,5 +24,8 @@ RUN pip install --no-cache-dir -r requirements.txt
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"]
 
5
  ghostscript \
6
  python3-opencv \
7
  libgl1-mesa-glx \
8
+ fonts-liberation \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
+ # Criar diretórios necessários e definir permissões
12
+ RUN mkdir -p /root/.config/matplotlib && \
13
+ mkdir -p /root/.cache/matplotlib && \
14
+ chmod -R 777 /root/.config/matplotlib && \
15
+ chmod -R 777 /root/.cache/matplotlib
16
+
17
  # Configurar diretório de trabalho
18
  WORKDIR /code
19
 
 
24
  # Copiar o código da aplicação
25
  COPY app.py .
26
 
27
+ # Configurar variável de ambiente para o matplotlib
28
+ ENV MPLCONFIGDIR=/tmp/matplotlib
29
+
30
  # Comando para iniciar a aplicação
31
  CMD ["python", "app.py"]