Skip to content

Commit

Permalink
Bump go version in container
Browse files Browse the repository at this point in the history
  • Loading branch information
tstirrat15 committed Sep 10, 2024
1 parent 9d6db3b commit 8da4081
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM golang:1.23.0-alpine3.20 AS spicedb-builder
FROM golang:1.23.1-alpine3.20 AS spicedb-builder
WORKDIR /go/src/app
RUN apk update && apk add --no-cache git
COPY . .
RUN --mount=type=cache,target=/root/.cache/go-build --mount=type=cache,target=/go/pkg/mod CGO_ENABLED=0 go build -v ./cmd/...

FROM golang:1.23.0-alpine3.20 AS health-probe-builder
FROM golang:1.23.1-alpine3.20 AS health-probe-builder
WORKDIR /go/src/app
RUN apk update && apk add --no-cache git
RUN git clone https://github.com/grpc-ecosystem/grpc-health-probe.git
Expand Down

0 comments on commit 8da4081

Please sign in to comment.