Skip to content

Commit

Permalink
Bump the docker group with 2 updates (#284)
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.23.0 to 1.23.1

Updates `alpine` from 3.20.2 to 3.20.3

---
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 Oct 11, 2024
1 parent 1f29d0c commit 0409d56
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.23.0 as builder
FROM golang:1.23.1 as builder

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / Docker

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
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.2
FROM alpine:3.20.3
RUN apk update && apk add --no-cache ca-certificates
WORKDIR /
COPY --from=builder /workspace/manager .
Expand Down

0 comments on commit 0409d56

Please sign in to comment.