Nechba commited on
Commit
a4290a8
·
verified ·
1 Parent(s): 1cd6250

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -5,7 +5,10 @@ FROM python:3.9
5
  WORKDIR /app
6
 
7
  # Install system dependencies
8
- RUN apt-get update && apt-get install -y glpk-utils
 
 
 
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