Merge pull request #298 from dachary/wip-update-reminder

Dockerfile: redirect the contributor to update.sh
This commit is contained in:
Pierre Ozoux 2018-03-31 12:27:39 +02:00 committed by GitHub
commit a7c6d0f5bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,4 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:7.1-apache
# entrypoint.sh and cron.sh dependencies

View File

@ -1,3 +1,4 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:7.1-fpm-alpine
# entrypoint.sh and cron.sh dependencies

View File

@ -1,3 +1,4 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:7.1-fpm
# entrypoint.sh and cron.sh dependencies

View File

@ -1,3 +1,4 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:7.1-apache
# entrypoint.sh and cron.sh dependencies

View File

@ -1,3 +1,4 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:7.1-fpm-alpine
# entrypoint.sh and cron.sh dependencies

View File

@ -1,3 +1,4 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:7.1-fpm
# entrypoint.sh and cron.sh dependencies

View File

@ -1,3 +1,4 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:7.1-apache
# entrypoint.sh and cron.sh dependencies

View File

@ -1,3 +1,4 @@
# DO NOT EDIT: created by update.sh from Dockerfile-alpine.template
FROM php:7.1-fpm-alpine
# entrypoint.sh and cron.sh dependencies

View File

@ -1,3 +1,4 @@
# DO NOT EDIT: created by update.sh from Dockerfile-debian.template
FROM php:7.1-fpm
# entrypoint.sh and cron.sh dependencies

View File

@ -55,7 +55,10 @@ function create_variant() {
# Create the version+variant directory with a Dockerfile.
mkdir -p "$dir"
cp "Dockerfile-${base[$variant]}.template" "$dir/Dockerfile"
template="Dockerfile-${base[$variant]}.template"
rm -f "$dir/Dockerfile"
echo "# DO NOT EDIT: created by update.sh from $template" > "$dir/Dockerfile"
cat "$template" >> "$dir/Dockerfile"
echo "updating $fullversion [$1] $variant"
@ -71,6 +74,8 @@ function create_variant() {
s/%%MEMCACHED_VERSION%%/'"${pecl_versions[memcached]}"'/g;
s/%%REDIS_VERSION%%/'"${pecl_versions[redis]}"'/g;
' "$dir/Dockerfile"
# remove write permission as a reminder this file must be modified with this script
chmod -w "$dir/Dockerfile"
# Copy the shell scripts
for name in entrypoint cron; do