Jethro85 commited on
Commit
b400b17
·
1 Parent(s): b156fec
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. requirements.txt +2 -1
Dockerfile CHANGED
@@ -10,7 +10,7 @@ WORKDIR /app
10
 
11
  # Upgrade pip toolchain and preinstall deps that unblock tf-models-official
12
  RUN pip install --no-cache-dir --upgrade pip setuptools wheel \
13
- && pip install --no-cache-dir "Cython<3" "pyyaml<5.4.0,>=5.1"
14
 
15
  # Then install your requirements
16
  COPY requirements.txt /app/requirements.txt
 
10
 
11
  # Upgrade pip toolchain and preinstall deps that unblock tf-models-official
12
  RUN pip install --no-cache-dir --upgrade pip setuptools wheel \
13
+ && pip install --no-cache-dir "Cython<3"
14
 
15
  # Then install your requirements
16
  COPY requirements.txt /app/requirements.txt
requirements.txt CHANGED
@@ -6,4 +6,5 @@ numpy==1.24.3
6
  tensorflow-macos==2.13.1
7
  tensorflow-metal==1.0.0 # optional but speeds things up on M1/M2
8
  tensorflow-privacy==0.8.11
9
- scikit-learn==1.3.0
 
 
6
  tensorflow-macos==2.13.1
7
  tensorflow-metal==1.0.0 # optional but speeds things up on M1/M2
8
  tensorflow-privacy==0.8.11
9
+ scikit-learn==1.3.0
10
+ pyyaml>=6.0.1