weitere Module + Base Image Ubuntu

This commit is contained in:
2022-11-16 13:28:19 +01:00
parent 085db384d9
commit 247237aefe
3 changed files with 30 additions and 6 deletions

9
docker-php-entrypoint Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php "$@"
fi
exec "$@"