Skip to content

Commit

Permalink
Fix installation path in gcsfuse packages
Browse files Browse the repository at this point in the history
  • Loading branch information
lezh committed Jan 28, 2021
1 parent ec7cd01 commit f35c952
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/package_gcsfuse_docker/Dockerfile
Expand Up @@ -26,7 +26,7 @@ RUN apt-get update -qq && \
ENV CGO_ENABLED=0
ENV GOOS=linux

ARG GCSFUSE_VERSION="0.33.0"
ARG GCSFUSE_VERSION="0.33.1"
ARG GCSFUSE_REPO="github.com/googlecloudplatform/gcsfuse/"
ENV GCSFUSE_PATH "$GOPATH/src/$GCSFUSE_REPO"
RUN go get -u ${GCSFUSE_REPO}
Expand All @@ -39,6 +39,7 @@ WORKDIR ${GOPATH}
RUN go install ${GCSFUSE_REPO}/tools/build_gcsfuse
RUN mkdir -p ${GCSFUSE_BIN}
RUN build_gcsfuse ${GCSFUSE_PATH} ${GCSFUSE_BIN} ${GCSFUSE_VERSION}
RUN mkdir -p ${GCSFUSE_BIN}/usr && mv ${GCSFUSE_BIN}/bin ${GCSFUSE_BIN}/usr/bin

ARG GCSFUSE_PKG="/packages"
RUN mkdir -p ${GCSFUSE_PKG}
Expand Down

0 comments on commit f35c952

Please sign in to comment.