Skip to content
Merged
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 builder/build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ARG TOOLS_IMAGE=${REGISTRY}${PREFIX}perfspect-tools:${TAG}
FROM ${TOOLS_IMAGE} AS tools

# STAGE 2 - image contains perfspect's Go components build environment
FROM golang:1.26.2@sha256:2a2b4b5791cea8ae09caecba7bad0bd9631def96e5fe362e4a5e67009fe4ae61
FROM golang:1.26.3@sha256:efaccb5b497e90df3ebe5216cc25cd9f98e73874e2d638b56e38d4a3f098c41c
# install system dependencies
RUN apt-get update && apt-get install -y jq
# allow git to operate in the mounted repository regardless of the user
Expand All @@ -36,4 +36,4 @@ WORKDIR /tmp/deps
COPY go.mod go.sum ./
RUN go mod download

WORKDIR /
WORKDIR /
2 changes: 1 addition & 1 deletion tools/build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ENV http_proxy=${http_proxy}
ENV https_proxy=${https_proxy}
ENV LANG=en_US.UTF-8
ARG DEBIAN_FRONTEND=noninteractive
ARG GO_VERSION=1.26.2
ARG GO_VERSION=1.26.3

# install minimum packages to add repositories
RUN success=false; \
Expand Down