diff --git a/images/5-edge/Dockerfile b/images/5-edge/Dockerfile index d35745c..1128796 100644 --- a/images/5-edge/Dockerfile +++ b/images/5-edge/Dockerfile @@ -109,8 +109,8 @@ VOLUME /var/www/html # fetch REDAXO, validate checksum and extract to tmp folder RUN set -e; \ - curl -Ls -o redaxo.zip https://github.com/redaxo/redaxo/releases/download/5.19.0/redaxo_5.19.0.zip; \ - echo "257afe253c4269c20cdb091f72dc57aaeb884aa3 *redaxo.zip" | shasum -c -a 256; \ + curl -Ls -o redaxo.zip https://github.com/redaxo/redaxo/releases/download/5.20.0/redaxo_5.20.0.zip; \ + echo "eda0101aa2035c19ec721f55ffa23e7e61335cba *redaxo.zip" | shasum -c -a 256; \ unzip -oq redaxo.zip -d /usr/src/redaxo; \ rm redaxo.zip; \ chown -R www-data:www-data /usr/src/redaxo diff --git a/images/5-stable/Dockerfile b/images/5-stable/Dockerfile index 2103eed..7dee24a 100644 --- a/images/5-stable/Dockerfile +++ b/images/5-stable/Dockerfile @@ -112,8 +112,8 @@ VOLUME /var/www/html # fetch REDAXO, validate checksum and extract to tmp folder RUN set -e; \ - curl -Ls -o redaxo.zip https://github.com/redaxo/redaxo/releases/download/5.19.0/redaxo_5.19.0.zip; \ - echo "257afe253c4269c20cdb091f72dc57aaeb884aa3 *redaxo.zip" | shasum -c -a 256; \ + curl -Ls -o redaxo.zip https://github.com/redaxo/redaxo/releases/download/5.20.0/redaxo_5.20.0.zip; \ + echo "eda0101aa2035c19ec721f55ffa23e7e61335cba *redaxo.zip" | shasum -c -a 256; \ unzip -oq redaxo.zip -d /usr/src/redaxo; \ rm redaxo.zip; \ chown -R www-data:www-data /usr/src/redaxo diff --git a/source/images.yml b/source/images.yml index 12a594f..5df89a0 100644 --- a/source/images.yml +++ b/source/images.yml @@ -5,19 +5,19 @@ # `5-edge` : latest REDAXO (even beta) + latest PHP version (even RC) # # How to get the sha for a package: -# `curl -Ls https://github.com/redaxo/redaxo/releases/download/5.19.0/redaxo_5.19.0.zip | shasum` +# `curl -Ls https://github.com/redaxo/redaxo/releases/download/5.20.0/redaxo_5.20.0.zip | shasum` images: - name: "5-stable" tags: - "5-stable" - "5" - package-url: "https://github.com/redaxo/redaxo/releases/download/5.19.0/redaxo_5.19.0.zip" - package-sha: "257afe253c4269c20cdb091f72dc57aaeb884aa3" + package-url: "https://github.com/redaxo/redaxo/releases/download/5.20.0/redaxo_5.20.0.zip" + package-sha: "eda0101aa2035c19ec721f55ffa23e7e61335cba" php-version: "8.3" - name: "5-edge" tags: - "5-edge" - package-url: "https://github.com/redaxo/redaxo/releases/download/5.19.0/redaxo_5.19.0.zip" - package-sha: "257afe253c4269c20cdb091f72dc57aaeb884aa3" + package-url: "https://github.com/redaxo/redaxo/releases/download/5.20.0/redaxo_5.20.0.zip" + package-sha: "eda0101aa2035c19ec721f55ffa23e7e61335cba" php-version: "8.5-rc"