Skip to content

Commit

Permalink
Remove "Rubbish" files in Root dir (#1402)
Browse files Browse the repository at this point in the history
Seems like we get files containing pip output, unlikely that these are
important. adding " " removes the file, which is convention syntax.

before:
https://screenshot.googleplex.com/9iVBh5Mtprsc95u

after: 
https://screenshot.googleplex.com/C6Kzxj8d8PqpCCS

fixes
#1249
  • Loading branch information
calderjo authored May 30, 2024
1 parent 44fa98f commit 6e3ce69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ RUN pip install opencv-contrib-python opencv-python && \
/tmp/clean-layer.sh

# Pin scipy until we update JAX b/335003097
RUN pip install scipy==1.12.0 \
RUN pip install "scipy==1.12.0" \
# Scikit-learn accelerated library for x86
scikit-learn-intelex>=2023.0.1 \
"scikit-learn-intelex>=2023.0.1" \
# HDF5 support
h5py \
# PUDB, for local debugging convenience
Expand Down

0 comments on commit 6e3ce69

Please sign in to comment.