Skip to content

Commit 6c50f85

Browse files
chore(deps): Update dockerfile dependencies
| datasource | package | from | to | | ---------- | ----------------- | ---- | --------------- | | docker | debian | 10 | buster-20240612 | | docker | docker/dockerfile | 1.21 | 1.23 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
1 parent 19df108 commit 6c50f85

9 files changed

Lines changed: 16 additions & 16 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# syntax=docker/dockerfile:1.21@sha256:27f9262d43452075f3c410287a2c43f5ef1bf7ec2bb06e8c9eeb1b8d453087bc
1+
# syntax=docker/dockerfile:1.23@sha256:2780b5c3bab67f1f76c781860de469442999ed1a0d7992a5efdf2cffc0e3d769
22

33
# NOTE: This Dockerfile can only be built using BuildKit. BuildKit is used by
44
# default when running `docker buildx build` or when DOCKER_BUILDKIT=1 is set
@@ -39,7 +39,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
3939

4040
###
4141

42-
FROM public.ecr.aws/ubuntu/ubuntu:noble@sha256:b1940c8ecf8ff591053cc5db0303fb882f9fafec50f26892a870bcbe1b30d25a
42+
FROM public.ecr.aws/ubuntu/ubuntu:noble@sha256:748740465d0aadaa69ab6e6c295892f17d7a8f44a85090dbb571ec0bb8c5674f
4343

4444
# Username and uid for alloy user
4545
ARG UID="473"

Dockerfile.windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG BASE_IMAGE_GO=golang:1.26-windowsservercore-ltsc2022@sha256:b36e6e1036d0746855a215ecc693bdc45879a74a15edc797fc9af6cc3f505863
2-
ARG BASE_IMAGE_WINDOWS=mcr.microsoft.com/windows/nanoserver:ltsc2022@sha256:60612a30303eb5a15ce7f53fa2eecf70bca41d72657de0482fbde601ae5f3403
2+
ARG BASE_IMAGE_WINDOWS=mcr.microsoft.com/windows/nanoserver:ltsc2022@sha256:3680dad0bb773da8efcd9d928eaf4e33817875ab71a43792640ab1bcc0b3c074
33

44
FROM ${BASE_IMAGE_GO} AS builder
55

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM golang:1.26.2-alpine@sha256:c2a1f7b2095d046ae14b286b18413a05bb82c9bca9b25fe7ff5efef0f0826166
1+
FROM golang:1.26.2-alpine@sha256:f85330846cde1e57ca9ec309382da3b8e6ae3ab943d2739500e08c86393a21b1
22

33
RUN go install github.com/grafana/grizzly/cmd/grr@v0.7.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM golang:1.26.2-alpine@sha256:c2a1f7b2095d046ae14b286b18413a05bb82c9bca9b25fe7ff5efef0f0826166
1+
FROM golang:1.26.2-alpine@sha256:f85330846cde1e57ca9ec309382da3b8e6ae3ab943d2739500e08c86393a21b1
22

33
RUN go install github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb@v0.5.1
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM golang:1.26.2@sha256:5f3787b7f902c07c7ec4f3aa91a301a3eda8133aa32661a3b3a3a86ab3a68a36 as build
1+
FROM golang:1.26.2@sha256:f7159064a17ccc65d0e10e342ae8783026182704bf4af8f6df8d5ba9af2be2fd as build
22
WORKDIR /app/
33
COPY go.mod go.sum ./
44
COPY syntax/go.mod syntax/go.sum ./syntax/
55
RUN go mod download
66
COPY ./integration-tests/docker/configs/kafka/ ./
77
RUN CGO_ENABLED=0 go build -o main main.go
8-
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
8+
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11
99
COPY --from=build /app/main /app/main
1010
CMD ["/app/main"]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM golang:1.26.2@sha256:5f3787b7f902c07c7ec4f3aa91a301a3eda8133aa32661a3b3a3a86ab3a68a36 as build
1+
FROM golang:1.26.2@sha256:f7159064a17ccc65d0e10e342ae8783026182704bf4af8f6df8d5ba9af2be2fd as build
22
WORKDIR /app/
33
COPY go.mod go.sum ./
44
COPY syntax/go.mod syntax/go.sum ./syntax/
55
RUN go mod download
66
COPY ./integration-tests/docker/configs/otel-gen/ ./
77
RUN CGO_ENABLED=0 go build -o main main.go
8-
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
8+
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11
99
COPY --from=build /app/main /app/main
1010
CMD ["/app/main"]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM golang:1.26.2@sha256:5f3787b7f902c07c7ec4f3aa91a301a3eda8133aa32661a3b3a3a86ab3a68a36 as build
1+
FROM golang:1.26.2@sha256:f7159064a17ccc65d0e10e342ae8783026182704bf4af8f6df8d5ba9af2be2fd as build
22
WORKDIR /app/
33
COPY go.mod go.sum ./
44
COPY syntax/go.mod syntax/go.sum ./syntax/
55
RUN go mod download
66
COPY ./integration-tests/docker/configs/prom-gen/ ./
77
RUN CGO_ENABLED=0 go build -o main main.go
8-
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
8+
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11
99
COPY --from=build /app/main /app/main
1010
CMD ["/app/main"]

internal/tools/packaging_test/testdata/debian-systemd.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build a Debian image with systemd configured to test deb package installation.
22
# See the `test-packages` make target and associated script for how this image is used.
3-
FROM debian:10@sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225
3+
FROM debian:buster-20240612@sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225
44
ENV container docker
55
ENV LC_ALL C
66
ENV DEBIAN_FRONTEND noninteractive

tools/build-image/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# syntax=docker/dockerfile:1.21@sha256:27f9262d43452075f3c410287a2c43f5ef1bf7ec2bb06e8c9eeb1b8d453087bc
1+
# syntax=docker/dockerfile:1.23@sha256:2780b5c3bab67f1f76c781860de469442999ed1a0d7992a5efdf2cffc0e3d769
22

33
# NOTE: This Dockerfile can only be built using BuildKit. BuildKit is used by
44
# default when running `docker buildx build` or when DOCKER_BUILDKIT=1 is set
@@ -15,18 +15,18 @@ ARG GO_RUNTIME=mustoverride
1515
#
1616

1717
# Dependency: docker (for building images)
18-
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 as docker
18+
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 as docker
1919
RUN apk add --no-cache docker-cli docker-cli-buildx
2020

2121
# Dependency: helm
22-
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 as helm
22+
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 as helm
2323
RUN apk add --no-cache helm
2424

2525
# Dependency: nsis (for building Windows installers)
2626
# TODO: Use nsis with conda so that we don't have to pull those packages from the internet.
2727
# https://nsis.sourceforge.io/Conda
2828
# TODO: Why do we use i386? Is it correct?
29-
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 as nsis
29+
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 as nsis
3030
RUN wget -nv https://nsis.sourceforge.io/mediawiki/images/4/4a/AccessControl.zip \
3131
&& unzip AccessControl.zip -d /usr/share/nsis/ \
3232
&& mkdir -p /usr/share/nsis/Plugins/x86-unicode \

0 commit comments

Comments
 (0)