File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1- FROM golang:1.25-bullseye AS builder
1+ FROM golang:1.25-trixie AS builder
22
33# Set working directory
44WORKDIR /app
Original file line number Diff line number Diff line change 11# Stage 1: Download go module cache for builds
2+ FROM golang:1.25-trixie AS builder
23ENV GOCACHE=/go/cache
34
45RUN apt-get update && apt-get install -y unzip
@@ -11,7 +12,7 @@ WORKDIR /app1/magic-modules-main/.ci/magician
1112RUN 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
1516SHELL ["/bin/bash" , "-c" ]
1617ENV GOCACHE=/go/cache
1718
@@ -31,4 +32,4 @@ RUN apt-get update && \
3132RUN 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
You can’t perform that action at this time.
0 commit comments