Skip to content

Commit

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


Updates `golang` from 1.22.5 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-minor
  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 Sep 14, 2024
1 parent 7c71d66 commit 0578989
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.22.5 as build
FROM golang:1.23.1 as build

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/
RUN mkdir /build
WORKDIR /build
COPY . .
RUN export CGO_ENABLED=0 && make build

FROM alpine:3.20.2
FROM alpine:3.20.3
RUN apk add --no-cache --update bash curl jq ca-certificates tini python3
COPY --from=build /build/bin/script_exporter /bin/script_exporter
EXPOSE 9469
Expand Down

0 comments on commit 0578989

Please sign in to comment.