From fec6a475a2699f981e16260021a1a19cdbe3be7c Mon Sep 17 00:00:00 2001 From: Mischa Date: Sun, 5 Jul 2026 11:34:21 +0200 Subject: [PATCH] deploy: bump Grav to 2.0.7 across build image + env pins Local Docker image was still baked at 2.0.4 while test and prod had self-upgraded to 2.0.7. Bump the Dockerfile release zip to 2.0.7 and align the GRAV_VERSION pins so a fresh remote-install lands on 2.0.7 directly instead of installing an older base and needing a self-upgrade. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Np4cMQLF77i664CAQXySzU --- .env.example | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 66ab222..bb8c0f3 100644 --- a/.env.example +++ b/.env.example @@ -59,7 +59,7 @@ WEBROOT=/home/example.com/public_html SITE_CONFIG_DIR=/home/example.com/site-config # Grav version installed by scripts/server-install.sh (remote-install). -GRAV_VERSION=2.0.4 +GRAV_VERSION=2.0.7 # Repos cloned/pulled on the server. USER_REPO=https://gitea.example.com/org/intotheeast-user.git diff --git a/Dockerfile b/Dockerfile index 68084a1..237613e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM getgrav/grav -RUN curl -sL 'https://github.com/getgrav/grav/releases/download/2.0.4/grav-admin-v2.0.4.zip' \ +RUN curl -sL 'https://github.com/getgrav/grav/releases/download/2.0.7/grav-admin-v2.0.7.zip' \ -o /tmp/grav-admin.zip \ && unzip -q /tmp/grav-admin.zip -d /tmp \ && cp -rf /tmp/grav-admin/assets /var/www/html/ \