From 4e702de8629c078115cd12a2b1785cb8dddaa083 Mon Sep 17 00:00:00 2001 From: Chris Eberle Date: Mon, 15 Jun 2026 15:15:35 -0700 Subject: [PATCH] update builder image --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9d7b48136..9b2570cf6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ # This is a builder image for the project. Feel free to use it, but it's # not an actual working environment meant for production, it's for releases # and certain automations. -FROM node:22-alpine3.19 +FROM node:24-alpine3.24 SHELL ["/bin/ash", "-o", "pipefail", "-c"] WORKDIR /app # Install dependencies -RUN apk update && apk add --no-cache ca-certificates git bash openjdk11-jre jq openssh python3 && rm -rf /var/cache/apk/* +RUN apk update && apk add --no-cache ca-certificates git bash openjdk21-jre jq openssh python3 && rm -rf /var/cache/apk/* COPY . . # Pre-cache node modules, set up ssh, install gh, and install gcloud RUN yarn install && \ @@ -18,13 +18,13 @@ RUN yarn install && \ mkdir -p /root/.ssh && \ chmod 700 /root/.ssh && \ ssh-keyscan -t rsa github.com >> /root/.ssh/known_hosts && \ - wget https://github.com/cli/cli/releases/download/v2.54.0/gh_2.54.0_linux_amd64.tar.gz && \ - tar -xvf gh_2.54.0_linux_amd64.tar.gz && \ - cd gh_2.54.0_linux_amd64 && \ + wget https://github.com/cli/cli/releases/download/v2.94.0/gh_2.94.0_linux_amd64.tar.gz && \ + tar -xvf gh_2.94.0_linux_amd64.tar.gz && \ + cd gh_2.94.0_linux_amd64 && \ mv bin/gh /usr/local/bin/ && \ cd /app && \ - rm -rf gh_2.54.0_linux_amd64 && \ - rm gh_2.54.0_linux_amd64.tar.gz && \ + rm -rf gh_2.94.0_linux_amd64 && \ + rm gh_2.94.0_linux_amd64.tar.gz && \ chmod +x /usr/local/bin/gh && \ wget https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-cli-linux-x86_64.tar.gz && \ tar -xvf google-cloud-cli-linux-x86_64.tar.gz && \