Skip to content

Commit

Permalink
fix: Update GCSFuse version (attempt to fix renaming issues)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvanliefland committed Nov 13, 2023
1 parent a7022f0 commit 555e57a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions jupyter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ USER root

# System libraries
RUN apt-get update
RUN export GCSFUSE_REPO=gcsfuse-`lsb_release -c -s`
RUN echo "deb https://packages.cloud.google.com/apt $GCSFUSE_REPO main" | sudo tee /etc/apt/sources.list.d/gcsfuse.list
RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -

# FUSE Amazon S3
RUN sudo apt install -y s3fs

# FUSE Google Cloud Storage
WORKDIR /tmp
RUN wget -q "https://github.com/GoogleCloudPlatform/gcsfuse/releases/download/v0.40.0/gcsfuse_0.40.0_amd64.deb" -O "gcsfuse.deb"
RUN apt install -y ./gcsfuse.deb
RUN rm ./gcsfuse.deb
RUN sudo apt-get install -y gcsfuse

WORKDIR $HOME

# Add locales
Expand Down

0 comments on commit 555e57a

Please sign in to comment.