File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717 * Ensure that binaries with the appropriate architecture are installed even if BuildKit is disabled.
1818 * Reduced image size by using "perl:* -slim" images.
1919
20+ ### Fixed
21+
22+ * Add workaround to run amd64 image on arm64.
23+
2024## [ 2.2.0] - 2023-02-15
2125
2226### Added
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ $SUDO chmod 777 /var/www/cgi-bin/mt/themes
2323if [ " $1 " = " apache2-foreground" ]; then
2424 # invoke php-fpm
2525 if [ -e /usr/sbin/php-fpm ]; then
26- mkdir /run/php-fpm
26+ mkdir -p /run/php-fpm
2727 /usr/sbin/php-fpm
2828 fi
2929
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ Timeout 3600
1313
1414# mt-static
1515Alias /mt-static/ /var/www/cgi-bin/mt/mt-static/
16+
17+ # Workaround to run amd64 image on arm64
18+ Mutex posixsem
1619CONF
1720
1821mod_rewrite_so=` find $module_dirs -name ' mod_rewrite.so' 2> /dev/null | head -1`
You can’t perform that action at this time.
0 commit comments