Skip to content

Commit

Permalink
Bump the docker group with 2 updates (#278)
Browse files Browse the repository at this point in the history
Bumps the docker group with 2 updates: golang and alpine.


Updates `golang` from 1.22.4 to 1.22.5

Updates `alpine` from 3.20.1 to 3.20.2

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: docker
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: docker
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Aug 3, 2024
1 parent 9c49fba commit 1e2c054
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,11 +1,11 @@
FROM golang:1.22.4 as builder
FROM golang:1.22.5 as builder
WORKDIR /workspace
COPY go.mod go.sum /workspace/
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -a -o manager main.go

FROM alpine:3.20.1
FROM alpine:3.20.2
RUN apk update && apk add --no-cache ca-certificates
WORKDIR /
COPY --from=builder /workspace/manager .
Expand Down

0 comments on commit 1e2c054

Please sign in to comment.