diff --git a/build/docker/alpine.Dockerfile b/build/docker/alpine.Dockerfile index 26e79f41..bcb7aef3 100644 --- a/build/docker/alpine.Dockerfile +++ b/build/docker/alpine.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-alpine AS dev +FROM golang:1.23-alpine AS dev WORKDIR /cli RUN apk --no-cache --update add git build-base COPY go.mod go.sum ./ @@ -49,7 +49,7 @@ RUN apk --no-cache --update add \ g++ \ curl -RUN apk --no-cache --update add dotnet8-sdk go~=1.22 --repository=https://dl-cdn.alpinelinux.org/alpine/v3.20/community +RUN apk --no-cache --update add dotnet8-sdk go~=1.23 --repository=https://dl-cdn.alpinelinux.org/alpine/v3.20/community RUN dotnet --version && npm -v && yarn -v diff --git a/build/docker/debian.Dockerfile b/build/docker/debian.Dockerfile index 66fa566b..1aa32bb1 100644 --- a/build/docker/debian.Dockerfile +++ b/build/docker/debian.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-bookworm AS dev +FROM golang:1.23-bookworm AS dev WORKDIR /cli ARG DEBIAN_FRONTEND=noninteractive @@ -90,7 +90,7 @@ RUN curl -fsSLO https://dot.net/v1/dotnet-install.sh \ && rm ./dotnet-install.sh \ && dotnet help -ENV GOLANG_VERSION="1.22" +ENV GOLANG_VERSION="1.23" RUN apt -y update && apt -y upgrade && apt -y install \ ca-certificates && \ apt -y install -t unstable \