Skip to content

Commit 92a7011

Browse files
Update dockerfile dependencies (#4514)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | alpine | final | minor | `3.23` → `3.24` | | [docker/dockerfile](https://redirect.github.com/moby/buildkit) | syntax | minor | `1.24` → `1.25` | | golang | stage | digest | `f1ddd9f` → `3ad5730` | | mysql | final | pinDigest | → `7dcddc0` | | [node](https://redirect.github.com/nodejs/node) | final | digest | `21f403a` → `a0b9bf0` | --- ### Configuration 📅 **Schedule**: (in timezone Etc/UTC) - Branch creation - "after 5pm on monday" - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/PeerDB-io/peerdb). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNDIuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI0Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9145ee5 commit 92a7011

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

flow/e2e/test_data/mysql-debug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# plus mysqld-debug, then route only the final foreground server to mysqld-debug. The stock
77
# entrypoint's config checks, datadir initialization, and temporary init server keep using the
88
# release binary because the debug binary can trip InnoDB assertions on that path.
9-
ARG MYSQL_VERSION=8.0.46
9+
ARG MYSQL_VERSION=8.0.46@sha256:7dcddc01f13bab2f15cde676d44d01f61fc9f99fe7785e86196dfc07d358ae2b
1010
FROM mysql:${MYSQL_VERSION}
1111
ARG MYSQL_VERSION
1212

stacks/flow.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# syntax=docker/dockerfile:1.24@sha256:87999aa3d42bdc6bea60565083ee17e86d1f3339802f543c0d03998580f9cb89
1+
# syntax=docker/dockerfile:1.25@sha256:0adf442eae370b6087e08edc7c50b552d80ddf261576f4ebd6421006b2461f12
22

3-
FROM golang:1.26-alpine@sha256:f1ddd9fe14fffc091dd98cb4bfa999f32c5fc77d2f2305ea9f0e2595c5437c14 AS builder
3+
FROM golang:1.26-alpine@sha256:3ad57304ad93bbec8548a0437ad9e06a455660655d9af011d58b993f6f615648 AS builder
44
# Allow build flags to be passed in at build time, for example debug flags
55
ARG DEBUG_BUILD
66
ENV DEBUG_BUILD=${DEBUG_BUILD}
@@ -30,7 +30,7 @@ RUN --mount=type=cache,target="/root/.cache/go-build" if [[ "$DEBUG_BUILD" = "1"
3030
go install github.com/go-delve/delve/cmd/dlv@latest; \
3131
fi
3232

33-
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 AS flow-base
33+
FROM alpine:3.24@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b AS flow-base
3434
ENV TZ=UTC
3535
ADD --checksum=sha256:e5bb2084ccf45087bda1c9bffdea0eb15ee67f0b91646106e466714f9de3c7e3 https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem /usr/local/share/ca-certificates/global-aws-rds-bundle.pem
3636
RUN apk add --no-cache ca-certificates geos && \

stacks/peerdb-server.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
4141
mkdir -p /root/target && \
4242
cp target/${BUILD_MODE}/peerdb-server /root/target/
4343

44-
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11
44+
FROM alpine:3.24@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b
4545
ENV TZ=UTC
4646
RUN apk add --no-cache ca-certificates postgresql-client curl iputils && \
4747
adduser -s /bin/sh -D peerdb && \

stacks/peerdb-ui.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# syntax=docker/dockerfile:1.24@sha256:87999aa3d42bdc6bea60565083ee17e86d1f3339802f543c0d03998580f9cb89
1+
# syntax=docker/dockerfile:1.25@sha256:0adf442eae370b6087e08edc7c50b552d80ddf261576f4ebd6421006b2461f12
22

33
# Base stage
4-
FROM node:24-alpine@sha256:21f403ab171f2dc89bad4dd69d7721bfd15f084ccb46cdd225f31f2bc59b5c9a AS base
4+
FROM node:24-alpine@sha256:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd AS base
55
ENV TZ=UTC
66
ENV NPM_CONFIG_UPDATE_NOTIFIER=false
77
RUN apk add --no-cache openssl && \

0 commit comments

Comments
 (0)