From b8411186ebb91a9f5fc8ed5381af71f7956194dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2026 12:08:39 +0000 Subject: [PATCH] Bump the docker group across 2 directories with 3 updates Bumps the docker group with 2 updates in the / directory: golang and alpine. Bumps the docker group with 1 update in the /smart_contracts/fabric/chaincode-typescript directory: node. Updates `golang` from 1.21.12-alpine to 1.26.5-alpine Updates `alpine` from 3.15 to 3.24 Updates `node` from 16 to 26 --- updated-dependencies: - dependency-name: golang dependency-version: 1.26.5-alpine dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker - dependency-name: alpine dependency-version: '3.24' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker - dependency-name: node dependency-version: '26' dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- smart_contracts/fabric/chaincode-typescript/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 754edb2..16388c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG BUILD_VERSION=canary -FROM golang:1.21.12-alpine as builder +FROM golang:1.26.5-alpine as builder RUN apk add make gcc build-base curl git WORKDIR /firefly-perf-cli @@ -9,7 +9,7 @@ RUN go mod download ADD . . RUN make VERSION=$BUILD_VERSION build -FROM alpine:3.15 as final +FROM alpine:3.24 as final WORKDIR /firefly-perf-cli COPY --from=builder /firefly-perf-cli/ffperf/ffperf ./ffperf RUN ln -s /firefly-perf-cli/ffperf /usr/bin/ffperf diff --git a/smart_contracts/fabric/chaincode-typescript/Dockerfile b/smart_contracts/fabric/chaincode-typescript/Dockerfile index 7462369..db2246a 100644 --- a/smart_contracts/fabric/chaincode-typescript/Dockerfile +++ b/smart_contracts/fabric/chaincode-typescript/Dockerfile @@ -1,7 +1,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -FROM node:16 AS builder +FROM node:26 AS builder WORKDIR /usr/src/app @@ -11,7 +11,7 @@ ENV npm_config_cache=/usr/src/app RUN npm ci && npm run package -FROM node:16 AS production +FROM node:26 AS production ARG CC_SERVER_PORT # Setup tini to work better handle signals