Skip to content

Commit

Permalink
Bump the docker group with 2 updates (#144)
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.3-alpine3.20 to 1.22.4-alpine3.20

Updates `alpine` from 3.20.0 to 3.20.1

---
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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jul 20, 2024
1 parent 247ba66 commit 17469b4
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.3-alpine3.20 as build
FROM golang:1.22.4-alpine3.20 as build
RUN apk update && apk add git make
RUN mkdir /build
WORKDIR /build
COPY . .
RUN export CGO_ENABLED=0 && make build

FROM alpine:3.20.0
FROM alpine:3.20.1
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 17469b4

Please sign in to comment.