PauloFN commited on
Commit
16a32bc
·
1 Parent(s): 6a6918c

added libs

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -11,6 +11,8 @@ ENV PYTHONUNBUFFERED 1
11
  # This is where your application's code will live.
12
  WORKDIR /app
13
 
 
 
14
  # Copy the requirements file into the container at /app.
15
  # This is done as a separate step to take advantage of Docker's layer caching.
16
  # If your requirements don't change, this layer won't be rebuilt, speeding up future builds.
 
11
  # This is where your application's code will live.
12
  WORKDIR /app
13
 
14
+ RUN apt-get update && apt-get install -y libgl1-mesa-glx
15
+
16
  # Copy the requirements file into the container at /app.
17
  # This is done as a separate step to take advantage of Docker's layer caching.
18
  # If your requirements don't change, this layer won't be rebuilt, speeding up future builds.