Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -5,7 +5,10 @@ FROM python:3.9
|
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Install system dependencies
|
8 |
-
|
|
|
|
|
|
|
9 |
|
10 |
# Copy only requirements.txt initially to leverage Docker cache
|
11 |
COPY requirements.txt /app/requirements.txt
|
|
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Install system dependencies
|
8 |
+
# Install system dependencies
|
9 |
+
RUN apt-get update && apt-get install -y \
|
10 |
+
glpk-utils \
|
11 |
+
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
# Copy only requirements.txt initially to leverage Docker cache
|
14 |
COPY requirements.txt /app/requirements.txt
|