wordpress/update.sh

13 lines
447 B
Bash
Raw Normal View History

2019-05-11 19:20:19 +00:00
#!/bin/bash
set -euxo pipefail
version=$(curl -s "https://lv.luzifer.io/catalog-api/wordpress/latest.txt?p=version")
grep -q "WP_VERSION=${version} " Dockerfile && exit 0 || echo "Update required"
wphash=$(curl -sSfL "https://github.com/WordPress/WordPress/archive/${version}.tar.gz" | sha256sum | cut -d ' ' -f 1)
sed -Ei \
-e "s/WP_VERSION=[0-9.]+/WP_VERSION=${version}/" \
-e "s/WP_CHECKSUM=[a-z0-9]+/WP_CHECKSUM=${wphash}/" \
Dockerfile