Skip to content

Commit 064568f

Browse files
authored
Merge pull request #1372 from Kaggle/pin-tfdf
pin tfdf
2 parents bebe939 + 2dd9f43 commit 064568f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile.tmpl

+3-2
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ RUN JAXVER=$(pip freeze | grep -e "^jax==") && \
198198
"${JAXVER}" && \
199199
/tmp/clean-layer.sh
200200

201-
RUN apt-get install -y default-jre && \
201+
RUN apt-get update && \
202+
apt-get install -y default-jre && \
202203
/tmp/clean-layer.sh
203204

204205
RUN pip install -f http://h2o-release.s3.amazonaws.com/h2o/latest_stable_Py.html h2o && /tmp/clean-layer.sh
@@ -214,7 +215,7 @@ RUN pip install \
214215
/tmp/clean-layer.sh
215216

216217
# b/318672158 Use simply tensorflow_decision_forests on next release, expected with tf 2.16
217-
RUN pip install tensorflow_decision_forests --no-deps && \
218+
RUN pip install tensorflow_decision_forests==1.8.1 --no-deps && \
218219
/tmp/clean-layer.sh
219220

220221
RUN chmod +x /tmp/keras_patch.sh && \

0 commit comments

Comments
 (0)