Skip to content

Commit c399d6e

Browse files
dependabot[bot]himaschal
authored andcommitted
Bump the docker-deps group across 7 directories with 6 updates (google#3800)
Bumps the docker-deps group with 1 update in the /examples/deployment/docker/db_server directory: mysql. Bumps the docker-deps group with 1 update in the /examples/deployment/docker/db_server/postgresql directory: postgres. Bumps the docker-deps group with 1 update in the /examples/deployment/docker/envsubst directory: alpine. Bumps the docker-deps group with 2 updates in the /examples/deployment/docker/log_server directory: golang and distroless/base-debian12. Bumps the docker-deps group with 2 updates in the /examples/deployment/docker/log_signer directory: golang and distroless/base-debian12. Bumps the docker-deps group with 1 update in the /examples/deployment/kubernetes/mysql/image directory: ubuntu. Bumps the docker-deps group with 1 update in the /integration/cloudbuild/testbase directory: golang. Updates `mysql` from `cf80c8d` to `2a03088` Updates `postgres` from `3962158` to `4d89c90` Updates `alpine` from `8a1f59f` to `4bcff63` Updates `golang` from 1.24.4-bookworm to 1.24.5-bookworm Updates `distroless/base-debian12` from `201ef91` to `007fbc0` Updates `golang` from 1.24.4-bookworm to 1.24.5-bookworm Updates `distroless/base-debian12` from `201ef91` to `007fbc0` Updates `ubuntu` from `01a3ee0` to `1ec65b2` Updates `golang` from 1.24.4-bookworm to 1.24.5-bookworm --- updated-dependencies: - dependency-name: mysql dependency-version: '8.4' dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-deps - dependency-name: postgres dependency-version: '17.5' dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-deps - dependency-name: alpine dependency-version: '3.22' dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-deps - dependency-name: golang dependency-version: 1.24.5-bookworm dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-deps - dependency-name: distroless/base-debian12 dependency-version: 007fbc0e0df2f12b739e9032a45ade4c58be0c9981767c440da6c404418f3144 dependency-type: direct:production dependency-group: docker-deps - dependency-name: golang dependency-version: 1.24.5-bookworm dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-deps - dependency-name: distroless/base-debian12 dependency-version: 007fbc0e0df2f12b739e9032a45ade4c58be0c9981767c440da6c404418f3144 dependency-type: direct:production dependency-group: docker-deps - dependency-name: ubuntu dependency-version: jammy dependency-type: direct:production dependency-group: docker-deps - dependency-name: golang dependency-version: 1.24.5-bookworm dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent af41a67 commit c399d6e

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

examples/deployment/docker/db_server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mysql:8.4@sha256:cf80c8de37d2b90e2b8b81db0953c0b0d18cbd2ff17ee82b642dac018d38e8a4
1+
FROM mysql:8.4@sha256:2a0308862d65d06e46c11e1b97be43a5fe1ca4f710e3d7b9b28f20a55ccddbd2
22

33
# TODO(roger2hk): Uncomment the below OS-level packages patch command as this is a temporary workaround to bypass the mysql8 gpg key rotation issue.
44
# # Patch the OS-level packages and remove unneeded dependencies.

examples/deployment/docker/db_server/postgresql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:17.5@sha256:3962158596daaef3682838cc8eb0e719ad1ce520f88e34596ce8d5de1b6330a1
1+
FROM postgres:17.5@sha256:4d89c904835259bc58876520e56267ca07a4ebd6a027f7814bbbf91b50d685be
22

33
# expects the build context to be: $GOPATH/src/github.com/google/trillian
44
COPY storage/postgresql/schema/storage.sql /docker-entrypoint-initdb.d/storage.sql

examples/deployment/docker/envsubst/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.22@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715
1+
FROM alpine:3.22@sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1
22

33
RUN apk add --no-cache gettext
44

examples/deployment/docker/log_server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.4-bookworm@sha256:2b85dcbf57258bceaa4599bc29efd92824b19b5f9a93b373b9df0856b8127cba as build
1+
FROM golang:1.24.5-bookworm@sha256:ef8c5c733079ac219c77edab604c425d748c740d8699530ea6aced9de79aea40 as build
22

33
WORKDIR /trillian
44

@@ -29,7 +29,7 @@ RUN go install ./cmd/trillian_log_server
2929
RUN go run github.com/google/go-licenses/v2 save ./cmd/trillian_log_server --save_path /THIRD_PARTY_NOTICES
3030

3131
# Make a minimal image.
32-
FROM gcr.io/distroless/base-debian12@sha256:201ef9125ff3f55fda8e0697eff0b3ce9078366503ef066653635a3ac3ed9c26
32+
FROM gcr.io/distroless/base-debian12@sha256:007fbc0e0df2f12b739e9032a45ade4c58be0c9981767c440da6c404418f3144
3333

3434
COPY --from=build /go/bin/trillian_log_server /
3535
COPY --from=build /THIRD_PARTY_NOTICES /THIRD_PARTY_NOTICES

examples/deployment/docker/log_signer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.4-bookworm@sha256:2b85dcbf57258bceaa4599bc29efd92824b19b5f9a93b373b9df0856b8127cba as build
1+
FROM golang:1.24.5-bookworm@sha256:ef8c5c733079ac219c77edab604c425d748c740d8699530ea6aced9de79aea40 as build
22

33
WORKDIR /trillian
44

@@ -28,7 +28,7 @@ RUN go install ./cmd/trillian_log_signer
2828
RUN go run github.com/google/go-licenses/v2 save ./cmd/trillian_log_signer --save_path /THIRD_PARTY_NOTICES
2929

3030
# Make a minimal image.
31-
FROM gcr.io/distroless/base-debian12@sha256:201ef9125ff3f55fda8e0697eff0b3ce9078366503ef066653635a3ac3ed9c26
31+
FROM gcr.io/distroless/base-debian12@sha256:007fbc0e0df2f12b739e9032a45ade4c58be0c9981767c440da6c404418f3144
3232

3333
COPY --from=build /go/bin/trillian_log_signer /
3434
COPY --from=build /THIRD_PARTY_NOTICES /THIRD_PARTY_NOTICES

examples/deployment/kubernetes/mysql/image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
FROM ubuntu:jammy@sha256:01a3ee0b5e413cefaaffc6abe68c9c37879ae3cced56a8e088b1649e5b269eee
16+
FROM ubuntu:jammy@sha256:1ec65b2719518e27d4d25f104d93f9fac60dc437f81452302406825c46fcc9cb
1717

1818
# Patch the OS-level packages and remove unneeded dependencies.
1919
RUN apt-get update \

integration/cloudbuild/testbase/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This Dockerfile builds a base image for Trillan integration tests.
2-
FROM golang:1.24.4-bookworm@sha256:2b85dcbf57258bceaa4599bc29efd92824b19b5f9a93b373b9df0856b8127cba
2+
FROM golang:1.24.5-bookworm@sha256:ef8c5c733079ac219c77edab604c425d748c740d8699530ea6aced9de79aea40
33

44
WORKDIR /testbase
55

0 commit comments

Comments
 (0)