From e012334975059b14a110799024184680db5c1629 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Fri, 1 May 2026 14:12:15 -0400 Subject: [PATCH] chore: update Crystal to 1.20.1 in OCI --- docker/Dockerfile | 2 +- docker/Dockerfile.arm64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index b1f3c68f0..820005ba7 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,7 +2,7 @@ ARG OPENSSL_VERSION='3.5.2' ARG OPENSSL_SHA256='c53a47e5e441c930c3928cf7bf6fb00e5d129b630e0aa873b08258656e7345ec' -FROM crystallang/crystal:1.20.0-alpine AS dependabot-crystal +FROM crystallang/crystal:1.20.1-alpine AS dependabot-crystal # We compile openssl ourselves due to a memory leak in how crystal interacts # with openssl diff --git a/docker/Dockerfile.arm64 b/docker/Dockerfile.arm64 index 0b3da79b8..a86507e1b 100644 --- a/docker/Dockerfile.arm64 +++ b/docker/Dockerfile.arm64 @@ -21,7 +21,7 @@ RUN tar -xzvf openssl-${OPENSSL_VERSION}.tar.gz RUN cd openssl-${OPENSSL_VERSION} && ./Configure --openssldir=/etc/ssl && make -j$(nproc) FROM dependabot-alpine AS builder -RUN apk add --no-cache 'crystal=1.20.0-r0' shards \ +RUN apk add --no-cache 'crystal=1.20.1-r0' shards \ sqlite-static yaml-static yaml-dev \ pcre2-static gc-static \ libxml2-static zlib-static \