Skip to content

Commit d883f67

Browse files
Update dockerfile dependencies
1 parent 4154230 commit d883f67

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

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.23@sha256:2780b5c3bab67f1f76c781860de469442999ed1a0d7992a5efdf2cffc0e3d769
22

3-
FROM golang:1.26-alpine@sha256:c2a1f7b2095d046ae14b286b18413a05bb82c9bca9b25fe7ff5efef0f0826166 AS builder
3+
FROM golang:1.26-alpine@sha256:f85330846cde1e57ca9ec309382da3b8e6ae3ab943d2739500e08c86393a21b1 AS builder
44
RUN apk add --no-cache gcc geos-dev musl-dev
55
WORKDIR /root/flow
66

@@ -23,7 +23,7 @@ RUN go generate
2323
ENV GOCACHE=/root/.cache/go-build
2424
RUN --mount=type=cache,target="/root/.cache/go-build" go build -o /root/peer-flow
2525

26-
FROM alpine:3.23@sha256:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659 AS flow-base
26+
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11 AS flow-base
2727
ENV TZ=UTC
2828
ADD --checksum=sha256:e5bb2084ccf45087bda1c9bffdea0eb15ee67f0b91646106e466714f9de3c7e3 https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem /usr/local/share/ca-certificates/global-aws-rds-bundle.pem
2929
RUN apk add --no-cache ca-certificates geos && \

stacks/mysql.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# How to use:
22
# 1. Build the image: docker build -f mysql.Dockerfile --tag 'bin_mysql' .
33
# 2. Run the container: docker run --name alala -e MYSQL_ROOT_PASSWORD=<some password> -p 3306:3306 -d bin_mysql
4-
FROM mysql:9.6.0@sha256:24e450bbd24f621c71b10404c946cc9ea1cbb0e6e7464b2be2de5193dcf1d05b
4+
FROM mysql:9.6.0@sha256:c5df04bee1a42b74a5841c6409e669cf62126cd0416f00c1cea8ab933b9361b9
55

66
# Copy the sample configuration file into the container
77
COPY stacks/mysql/my.cnf.sample /etc/mysql/my.cnf

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:25109184c71bdad752c8312a8623239686a9a2071e8825f20acb8f2198c3f659
44+
FROM alpine:3.23@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11
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.23@sha256:2780b5c3bab67f1f76c781860de469442999ed1a0d7992a5efdf2cffc0e3d769
22

33
# Base stage
4-
FROM node:24-alpine@sha256:01743339035a5c3c11a373cd7c83aeab6ed1457b55da6a69e014a95ac4e4700b AS base
4+
FROM node:24-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f 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)