Skip to content

Commit

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


Updates `golang` from 1.20.6-alpine3.18 to 1.22.1-alpine3.18

Updates `alpine` from 3.18.2 to 3.19.1

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

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] committed Mar 6, 2024
1 parent 2a567ab commit 70c0dc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/ingester/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:1.20.6-alpine3.18 as build
FROM golang:1.22.1-alpine3.18 as build
RUN apk update && apk add git make
WORKDIR /ingester
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN make build-ingester

FROM alpine:3.18.2
FROM alpine:3.19.1
RUN apk update && apk add --no-cache ca-certificates
RUN mkdir /ingester
COPY --from=build /ingester/ingester /ingester
Expand Down

0 comments on commit 70c0dc3

Please sign in to comment.