Skip to content

Commit 6597cbf

Browse files
Update dockerfile dependencies
1 parent 98993d4 commit 6597cbf

4 files changed

Lines changed: 5 additions & 5 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.4.9@sha256:c36050afdca850f23cef85703f84c7531a5ae155a11b5ee1c60acb09937c4084
1010
FROM mysql:${MYSQL_VERSION}
1111
ARG MYSQL_VERSION
1212

stacks/flow.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.24@sha256:87999aa3d42bdc6bea60565083ee17e86d1f3339802f543c0d03998580f9cb89
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1.24@sha256:87999aa3d42bdc6bea60565083ee17e86d1f3339802f543c0d03998580f9cb89
22

33
# Base stage
4-
FROM node:24-alpine@sha256:21f403ab171f2dc89bad4dd69d7721bfd15f084ccb46cdd225f31f2bc59b5c9a AS base
4+
FROM node:24-alpine@sha256:156b55f92e98ccd5ef49578a8cea0df4679826564bad1c9d4ef04462b9f0ded6 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)