cigol123 commited on
Commit
d585858
·
verified ·
1 Parent(s): fa18beb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,11 +1,12 @@
1
  FROM python:3.9-slim
2
 
3
- # Install build essentials and OpenBLAS
4
  RUN apt-get update && apt-get install -y \
5
  build-essential \
6
  wget \
7
  libopenblas-dev \
8
  ninja-build \
 
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  # Set environment variables for optimal performance
@@ -26,3 +27,4 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
26
 
27
  COPY --chown=user . /app
28
  CMD ["python", "app.py"]
 
 
1
  FROM python:3.9-slim
2
 
3
+ # Install required packages including pkg-config
4
  RUN apt-get update && apt-get install -y \
5
  build-essential \
6
  wget \
7
  libopenblas-dev \
8
  ninja-build \
9
+ pkg-config \
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
  # Set environment variables for optimal performance
 
27
 
28
  COPY --chown=user . /app
29
  CMD ["python", "app.py"]
30
+