@@ -8,7 +8,7 @@ RUN sed -i 's|http://deb.debian.org/debian|http://mirrors.edge.kernel.org/debian
88RUN apt-get update && apt-get install -y libssl-dev openssl pkg-config build-essential
99RUN cargo install jj-cli typos-cli watchexec-cli
1010
11- FROM ubuntu:resolute @sha256:cc925e589b7543b910fea57a240468940003fbfc0515245a495dd0ad8fe7cef1 AS go
11+ FROM ubuntu:26.04 @sha256:5e275723f82c67e387ba9e3c24baa0abdcb268917f276a0561c97bef9450d0b4 AS go
1212
1313# Install Go manually, so that we can control the version
1414ARG GO_VERSION=1.25.9
@@ -27,7 +27,7 @@ ENV PATH=$PATH:/usr/local/go/bin
2727ARG GOPATH="/tmp/"
2828# Install Go utilities.
2929RUN apt-get update && \
30- apt-get install --yes gcc && \
30+ apt-get install --yes build-essential && \
3131 mkdir --parents /usr/local/go && \
3232 tar --extract --gzip --directory=/usr/local/go --file=/usr/local/go.tar.gz --strip-components=1 && \
3333 mkdir --parents "$GOPATH" && \
@@ -67,7 +67,7 @@ RUN apt-get update && \
6767 # mockgen for generating mocks (v0.6.0+ required for Go 1.25)
6868 go install go.uber.org/mock/mockgen@v0.6.0 && \
6969 # Reduce image size.
70- apt-get remove --yes gcc && \
70+ apt-get remove --yes build-essential && \
7171 apt-get autoremove --yes && \
7272 apt-get clean && \
7373 rm -rf /var/lib/apt/lists/* && \
@@ -83,7 +83,7 @@ RUN curl -L -o protoc.zip https://github.com/protocolbuffers/protobuf/releases/d
8383 unzip protoc.zip && \
8484 rm protoc.zip
8585
86- FROM ubuntu:resolute @sha256:cc925e589b7543b910fea57a240468940003fbfc0515245a495dd0ad8fe7cef1
86+ FROM ubuntu:26.04 @sha256:5e275723f82c67e387ba9e3c24baa0abdcb268917f276a0561c97bef9450d0b4
8787
8888SHELL ["/bin/bash" , "-c" ]
8989
@@ -255,7 +255,7 @@ RUN source $NVM_DIR/nvm.sh && \
255255ENV PATH=$NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
256256RUN corepack enable && \
257257 corepack prepare npm@10.8.1 --activate && \
258- corepack prepare pnpm@10.14.0 --activate
258+ corepack prepare pnpm@10.33.2 --activate
259259
260260RUN pnpx playwright@1.47.0 install --with-deps chromium
261261
0 commit comments