Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ RUN JAXVER=$(pip freeze | grep -e "^jax==") && \
"${JAXVER}" && \
/tmp/clean-layer.sh

RUN apt-get install -y default-jre && \
RUN apt-get update && \
apt-get install -y default-jre && \
/tmp/clean-layer.sh

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

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

RUN chmod +x /tmp/keras_patch.sh && \
Expand Down