itzjunayed commited on
Commit
caef88e
·
verified ·
1 Parent(s): 9375174

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -4,6 +4,12 @@ FROM python:3.7.6
4
  # Set the working directory inside the container
5
  WORKDIR /app
6
 
 
 
 
 
 
 
7
  # Copy your application's requirements file to the container
8
  COPY requirements.txt .
9
 
 
4
  # Set the working directory inside the container
5
  WORKDIR /app
6
 
7
+ # Create a directory for Matplotlib configuration
8
+ RUN mkdir -p /app/matplotlib-config
9
+
10
+ # Set environment variable for Matplotlib config
11
+ ENV MPLCONFIGDIR=/app/matplotlib-config
12
+
13
  # Copy your application's requirements file to the container
14
  COPY requirements.txt .
15