Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions smart_contracts/fabric/chaincode-typescript/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# SPDX-License-Identifier: Apache-2.0
#
FROM node:16 AS builder
FROM node:26 AS builder

WORKDIR /usr/src/app

Expand All @@ -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
Expand Down
Loading