Spaces:
Running
Running
Update Dockerfile
Browse files- 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
|