Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions build/docker/alpine.Dockerfile
Original file line number Diff line number Diff line change
@@ -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 ./
Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/debian.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-bookworm AS dev
FROM golang:1.23-bookworm AS dev
WORKDIR /cli

ARG DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -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 \
Expand Down
Loading