Skip to content

Commit 554d895

Browse files
authored
Added missing line to Dockerfile (#15862)
1 parent 118016f commit 554d895

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.ci/containers/build-environment/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25-bullseye AS builder
1+
FROM golang:1.25-trixie AS builder
22

33
# Set working directory
44
WORKDIR /app

.ci/containers/go-plus/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Stage 1: Download go module cache for builds
2+
FROM golang:1.25-trixie AS builder
23
ENV GOCACHE=/go/cache
34

45
RUN apt-get update && apt-get install -y unzip
@@ -11,7 +12,7 @@ WORKDIR /app1/magic-modules-main/.ci/magician
1112
RUN go build -o /dev/null .
1213

1314
# Stage 2: Creating the final image
14-
FROM golang:1.25-bullseye
15+
FROM golang:1.25-trixie
1516
SHELL ["/bin/bash", "-c"]
1617
ENV GOCACHE=/go/cache
1718

@@ -31,4 +32,4 @@ RUN apt-get update && \
3132
RUN wget https://releases.hashicorp.com/terraform/1.11.0/terraform_1.11.0_linux_amd64.zip \
3233
&& unzip terraform_1.11.0_linux_amd64.zip \
3334
&& rm terraform_1.11.0_linux_amd64.zip \
34-
&& mv ./terraform /bin/terraform
35+
&& mv ./terraform /bin/terraform

0 commit comments

Comments
 (0)