d0tpy commited on
Commit
16545d3
·
verified ·
1 Parent(s): a44369e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -5,8 +5,8 @@ WORKDIR /app
5
  # Copy the current directory contents into the container at /app
6
  COPY . /app
7
 
8
- # Install any needed packages specified in requirements.txt
9
  RUN pip install --no-cache-dir -r requirements.txt
 
10
 
11
  # Make port 80 available to the world outside this container
12
  EXPOSE 7860
 
5
  # Copy the current directory contents into the container at /app
6
  COPY . /app
7
 
 
8
  RUN pip install --no-cache-dir -r requirements.txt
9
+ RUN apt-get update && apt-get install -y libgl1-mesa-glx
10
 
11
  # Make port 80 available to the world outside this container
12
  EXPOSE 7860