We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b793084 commit a150398Copy full SHA for a150398
Dockerfile.tmpl
@@ -157,11 +157,12 @@ RUN pip install lightgbm==$LIGHTGBM_VERSION && \
157
{{ end }}
158
159
# Install JAX
160
+# b/316967430 Remove pin once new version of tensorflowjs is released (> 4.15.0)
161
{{ if eq .Accelerator "gpu" }}
-RUN pip install "jax[cuda11_local]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html && \
162
+RUN pip install "jax[cuda11_local]==0.4.21" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html && \
163
/tmp/clean-layer.sh
164
{{ else }}
-RUN pip install jax[cpu] && \
165
+RUN pip install jax[cpu]==0.4.21 && \
166
167
168
0 commit comments