diff --git a/apps/concourse-github-pr-resource/Dockerfile b/apps/concourse-github-pr-resource/Dockerfile index f84d755cf8..24cefe7ea7 100644 --- a/apps/concourse-github-pr-resource/Dockerfile +++ b/apps/concourse-github-pr-resource/Dockerfile @@ -13,7 +13,7 @@ ADD apps/concourse-github-pr-resource/scripts/install_git_crypt.sh install_git_c RUN ./install_git_crypt.sh && rm ./install_git_crypt.sh RUN rm -rf scripts -FROM golang:1.21 as builder +FROM golang:1.23 as builder WORKDIR /go/src/github.com/telia-oss/github-pr-resource ENV GOOS=$GOOS ENV GOARCH=$GOARCH diff --git a/apps/error-pages/Dockerfile b/apps/error-pages/Dockerfile index 53611c30ec..7a201723c2 100644 --- a/apps/error-pages/Dockerfile +++ b/apps/error-pages/Dockerfile @@ -10,7 +10,7 @@ RUN apk update && apk upgrade && \ RUN git clone -b $VERSION https://github.com/tarampampam/error-pages.git /source # this stage is used to build the application -FROM golang:1.21-bullseye AS builder +FROM golang:1.23-bullseye AS builder COPY --from=cloner /source/go.* /src/ diff --git a/apps/krantorbox/Dockerfile b/apps/krantorbox/Dockerfile index 2d5a60d236..51b0b9c418 100644 --- a/apps/krantorbox/Dockerfile +++ b/apps/krantorbox/Dockerfile @@ -7,7 +7,7 @@ RUN apk update && apk upgrade && \ RUN git clone --depth 1 https://gitlab.com/book2566/krantorbox.git /source -FROM golang:1.22-alpine +FROM golang:1.23-alpine WORKDIR /app diff --git a/apps/seonaut/Dockerfile b/apps/seonaut/Dockerfile index cdce48e00a..4f9d0bdc79 100644 --- a/apps/seonaut/Dockerfile +++ b/apps/seonaut/Dockerfile @@ -9,7 +9,7 @@ RUN apk update && apk upgrade && \ RUN git clone https://github.com/StJudeWasHere/seonaut.git /source -FROM golang:1.21-alpine3.18 AS builder +FROM golang:1.22-alpine3.18 AS builder RUN mkdir /app COPY --from=cloner /source/. /app diff --git a/apps/threadfin/Dockerfile b/apps/threadfin/Dockerfile index b48295fe45..b4eda08911 100644 --- a/apps/threadfin/Dockerfile +++ b/apps/threadfin/Dockerfile @@ -1,7 +1,7 @@ # First stage. Building a binary # ----------------------------------------------------------------------------- -FROM golang:1.18 AS builder +FROM golang:1.23 AS builder ARG VERSION # Download the source code diff --git a/apps/volsync/Dockerfile b/apps/volsync/Dockerfile index ca5c7e98f2..d689398666 100644 --- a/apps/volsync/Dockerfile +++ b/apps/volsync/Dockerfile @@ -13,7 +13,7 @@ RUN git clone https://github.com/backube/volsync.git /source ## Upstream Dockerfile ###################################################################### # Establish a common builder image for all golang-based images -FROM golang:1.22 AS golang-builder +FROM golang:1.23 AS golang-builder USER root WORKDIR /workspace # We don't vendor modules. Enforce that behavior