File tree Expand file tree Collapse file tree 2 files changed +19
-8
lines changed
Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 1+ ## 2026-01
2+
3+ * Upgrade Node.js base image: 24.0.2 (slim) → 24.13.0 (slim)
4+ * Upgrade pnpm: 10.11.0 → 10.28.1
5+ * Upgrade turbo: 2.5.8 → 2.7.5
6+ * Upgrade @swc/core : 1.11.24 → 1.15.10
7+ * Upgrade BuildKit (buildctl): 0.21.1 → 0.26.3
8+ * Upgrade go: 1.22.0 → 1.25.6
9+ * Upgrade amazon-ecr-credential-helper: 0.9.1 → 0.11.0
10+ * Upgrade rust: 1.91.1 → 1.92.0
11+
112## 2025-12
213
314* Add Rust 1.91.1 via rustup with minimal profile
Original file line number Diff line number Diff line change 1- FROM node:24.0.2 -slim
1+ FROM node:24.13.0 -slim
22
33ENV DEBIAN_FRONTEND noninteractive
4- ENV PNPM_VERSION 10.11.0
5- ENV TURBO_VERSION 2.5.8
4+ ENV PNPM_VERSION 10.28.1
5+ ENV TURBO_VERSION 2.7.5
66ENV TSX_VERSION 4.19.4
77ENV TS_NODE 10.9.2
8- ENV SWC_CORE 1.11.24
8+ ENV SWC_CORE 1.15.10
99ENV AWS_CLI 2.27.19
10- ENV BUILDKIT_VERSION 0.21.1
10+ ENV BUILDKIT_VERSION 0.26.3
1111
1212RUN apt-get update -y \
1313 && apt-get install -y --no-install-recommends \
@@ -54,12 +54,12 @@ RUN curl -L "https://dl.k8s.io/release/v1.30.13/bin/linux/amd64/kubectl" -o "/us
5454RUN ln -s /usr/bin/kubectl-v1.32 /usr/bin/kubectl
5555
5656# install golang
57- COPY --from=golang:1.22.0 /usr/local/go/ /usr/local/go/
57+ COPY --from=golang:1.25.6 /usr/local/go/ /usr/local/go/
5858ENV GOPATH /go
5959ENV PATH $GOPATH/bin:/usr/local/go/bin:/usr/bin:${PATH}
6060
6161# install amazon-ecr-credential-helper
62- RUN curl -L "https://amazon-ecr-credential-helper-releases.s3.us-east-2.amazonaws.com/0.9.1 /linux-amd64/docker-credential-ecr-login" -o "/usr/bin/docker-credential-ecr-login" \
62+ RUN curl -L "https://amazon-ecr-credential-helper-releases.s3.us-east-2.amazonaws.com/0.11.0 /linux-amd64/docker-credential-ecr-login" -o "/usr/bin/docker-credential-ecr-login" \
6363 && chmod a+x /usr/bin/docker-credential-ecr-login
6464
6565RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
@@ -70,6 +70,6 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_UNMANAGED_INSTALL="/usr/
7070
7171# install rust via rustup
7272# https://www.rust-lang.org/tools/install
73- ENV RUST_VERSION 1.91.1
73+ ENV RUST_VERSION 1.92.0
7474RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} --profile default \
7575 && ln -s /root/.cargo/bin/* /usr/bin/
You can’t perform that action at this time.
0 commit comments