Skip to content

Commit

Permalink
Bump the docker-ingester group across 1 directory with 2 updates
Browse files Browse the repository at this point in the history
Bumps the docker-ingester group with 2 updates in the /cmd/ingester directory: golang and alpine.


Updates `golang` from 1.20.2-alpine3.17 to 1.21.5-alpine3.17

Updates `alpine` from 3.19.1 to 3.20.3

---
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>
  • Loading branch information
dependabot[bot] authored Dec 1, 2024
1 parent 7cec191 commit a8aa29d
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,13 +1,13 @@
# We can't go past 1.20.2 until this issue is solved: https://github.com/golang/go/issues/62130#issuecomment-1687335898
FROM golang:1.20.2-alpine3.17 as build
FROM golang:1.21.5-alpine3.17 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.19.1
FROM alpine:3.20.3
RUN apk update && apk add --no-cache ca-certificates
RUN mkdir /ingester
COPY --from=build /ingester/ingester /ingester
Expand Down

0 comments on commit a8aa29d

Please sign in to comment.