Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion deployment/docker/dredd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24-alpine3.21 as golang
FROM golang:1.26-alpine3.23 as golang
Comment thread
abh marked this conversation as resolved.

RUN apk add --no-cache -U \
curl git
Expand Down
4 changes: 2 additions & 2 deletions deployment/docker/runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.24-alpine3.21 as builder
FROM --platform=$BUILDPLATFORM golang:1.26-alpine3.23 as builder
Comment thread
abh marked this conversation as resolved.

RUN apk add --no-cache -U \
libc-dev curl nodejs npm git gcc zip unzip tar
Expand Down Expand Up @@ -45,7 +45,7 @@ RUN curl -O https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraf
RUN wget -O /tmp/terragrunt https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT_VERSION}/terragrunt_linux_${TARGETARCH} && \
chmod +x /tmp/terragrunt

FROM alpine:3.21
FROM alpine:3.23

ARG TARGETARCH="amd64"

Expand Down
4 changes: 2 additions & 2 deletions deployment/docker/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.24-alpine3.21 as builder
FROM --platform=$BUILDPLATFORM golang:1.26-alpine3.23 as builder
Comment thread
abh marked this conversation as resolved.

RUN apk add --no-cache -U \
libc-dev curl nodejs npm git gcc zip unzip tar
Expand Down Expand Up @@ -46,7 +46,7 @@ RUN curl -O https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraf
RUN wget -O /tmp/terragrunt https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT_VERSION}/terragrunt_linux_${TARGETARCH} && \
chmod +x /tmp/terragrunt

FROM alpine:3.21
FROM alpine:3.23

ARG TARGETARCH="amd64"
# renovate: datasource=pypi depName=ansible
Expand Down
Loading