Skip to content

Commit

Permalink
Bump the docker group with 2 updates (#114)
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.21.5-alpine3.18 to 1.21.6-alpine3.18

Updates `alpine` from 3.19.0 to 3.19.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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 29, 2024
1 parent 209fcb0 commit 468de42
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.21.5-alpine3.18 as build
FROM golang:1.21.6-alpine3.18 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.19.0
FROM alpine:3.19.1
RUN apk add --no-cache --update bash curl jq ca-certificates tini
COPY --from=build /build/bin/script_exporter /bin/script_exporter
EXPOSE 9469
Expand Down

0 comments on commit 468de42

Please sign in to comment.