Skip to content

Commit

Permalink
Update Dockerfile for golang 1.17.5 and gcsfuse 0.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lezh committed Dec 16, 2021
1 parent 2f9d0c3 commit 3aeaffb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -17,7 +17,7 @@
# Mount the gcsfuse to /mnt/gcs:
# > docker run --privileged --device /fuse -v /mnt/gcs:/gcs:rw,rshared gcsfuse

FROM golang:1.17.3-alpine as builder
FROM golang:1.17.5-alpine as builder

RUN apk add git

Expand Down
4 changes: 2 additions & 2 deletions tools/package_gcsfuse_docker/Dockerfile
Expand Up @@ -17,15 +17,15 @@
# Copy the gcsfuse packages to the host:
# > docker run -it -v /tmp:/output gcsfuse-release cp -r /packages /output

FROM golang:1.17.3 as builder
FROM golang:1.17.5 as builder

RUN apt-get update -qq && apt-get install -y ruby ruby-dev rubygems build-essential rpm && gem install --no-document fpm

ENV CGO_ENABLED=0
ENV GOOS=linux
ENV GO111MODULE=auto

ARG GCSFUSE_VERSION="0.38.0"
ARG GCSFUSE_VERSION="0.39.0"
ARG GCSFUSE_REPO="github.com/googlecloudplatform/gcsfuse/"
ENV GCSFUSE_PATH "$GOPATH/src/$GCSFUSE_REPO"
RUN go get ${GCSFUSE_REPO}
Expand Down

0 comments on commit 3aeaffb

Please sign in to comment.