jumbo (sha256:25e8bcbd123d55c5ca212793eab54e9c43548b838009d508de277385a43ddc85)
Published 2026-01-01 20:28:02 +01:00 by manu
Installation
docker pull git.tasugo.es/manu/jumbo@sha256:25e8bcbd123d55c5ca212793eab54e9c43548b838009d508de277385a43ddc85sha256:25e8bcbd123d55c5ca212793eab54e9c43548b838009d508de277385a43ddc85Image Layers
| ADD alpine-minirootfs-3.23.2-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c |
| RUN /bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz # buildkit |
| RUN /bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data # buildkit |
| ENV PHP_INI_DIR=/usr/local/etc/php |
| RUN /bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html # buildkit |
| ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 |
| ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 |
| ENV PHP_LDFLAGS=-Wl,-O1 -pie |
| ENV GPG_KEYS=AFD8691FDAEDF03BDF6E460563F15A9B715376CA 9D7F99A0CB8F05C8A6958D6256A97AF7600A39A6 0616E93D95AF471243E26761770426E17EBBB3DD |
| ENV PHP_VERSION=8.4.16 |
| ENV PHP_URL=https://www.php.net/distributions/php-8.4.16.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.4.16.tar.xz.asc |
| ENV PHP_SHA256=f66f8f48db34e9e29f7bfd6901178e9cf4a1b163e6e497716dfcb8f88bcfae30 |
| RUN /bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; apk del --no-network .fetch-deps # buildkit |
| COPY docker-php-source /usr/local/bin/ # buildkit |
| RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --disable-phpdbg --with-pear --disable-cgi --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version # buildkit |
| COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ # buildkit |
| RUN /bin/sh -c docker-php-ext-enable opcache # buildkit |
| RUN /bin/sh -c docker-php-ext-enable sodium # buildkit |
| ENTRYPOINT ["docker-php-entrypoint"] |
| WORKDIR /var/www/html |
| RUN /bin/sh -c set -eux; cd /usr/local/etc; if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi; { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '; https://github.com/docker-library/php/pull/725#issuecomment-443540114'; echo 'log_limit = 8192'; echo; echo '[www]'; echo '; php-fpm closes STDOUT on startup, so sending logs to /proc/self/fd/1 does not work.'; echo '; https://bugs.php.net/bug.php?id=73886'; echo 'access.log = /proc/self/fd/2'; echo; echo 'clear_env = no'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; echo 'decorate_workers_output = no'; } | tee php-fpm.d/docker.conf; { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf; mkdir -p "$PHP_INI_DIR/conf.d"; { echo '; https://github.com/docker-library/php/issues/878#issuecomment-938595965'; echo 'fastcgi.logging = Off'; } > "$PHP_INI_DIR/conf.d/docker-fpm.ini" # buildkit |
| STOPSIGNAL SIGQUIT |
| EXPOSE map[9000/tcp:{}] |
| CMD ["php-fpm"] |
| RUN /bin/sh -c apk add --no-cache nginx supervisor sqlite icu-libs libzip oniguruma curl && apk add --no-cache --virtual .build-deps icu-dev libzip-dev oniguruma-dev sqlite-dev && docker-php-ext-install intl zip mbstring pdo_sqlite bcmath opcache && apk del .build-deps # buildkit |
| RUN /bin/sh -c echo "opcache.enable=1" >> /usr/local/etc/php/conf.d/opcache.ini && echo "opcache.memory_consumption=128" >> /usr/local/etc/php/conf.d/opcache.ini && echo "opcache.interned_strings_buffer=8" >> /usr/local/etc/php/conf.d/opcache.ini && echo "opcache.max_accelerated_files=10000" >> /usr/local/etc/php/conf.d/opcache.ini && echo "opcache.validate_timestamps=0" >> /usr/local/etc/php/conf.d/opcache.ini # buildkit |
| WORKDIR /var/www/html |
| COPY /build/vendor ./vendor # buildkit |
| COPY /build/public/build ./public/build # buildkit |
| COPY . . # buildkit |
| COPY /usr/bin/composer /usr/bin/composer # buildkit |
| RUN /bin/sh -c composer dump-autoload --optimize --no-dev && rm /usr/bin/composer # buildkit |
| RUN /bin/sh -c mkdir -p /var/www/html/storage/app/public /var/www/html/storage/framework/cache /var/www/html/storage/framework/sessions /var/www/html/storage/framework/views /var/www/html/storage/logs /var/www/html/bootstrap/cache /var/www/html/database # buildkit |
| RUN /bin/sh -c chown -R www-data:www-data /var/www/html && find /var/www/html -type f -exec chmod 644 {} \; && find /var/www/html -type d -exec chmod 755 {} \; && chmod -R 775 /var/www/html/storage && chmod -R 775 /var/www/html/bootstrap/cache # buildkit |
| RUN /bin/sh -c printf 'server {\n listen 80;\n server_name _;\n root /var/www/html/public;\n index index.php;\n client_max_body_size 100M;\n location / {\n try_files $uri $uri/ /index.php?$query_string;\n }\n location ~ \\.php$ {\n fastcgi_pass 127.0.0.1:9000;\n fastcgi_index index.php;\n fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n include fastcgi_params;\n fastcgi_read_timeout 300;\n }\n location ~ /\\.(?!well-known).* {\n deny all;\n }\n}\n' > /etc/nginx/http.d/default.conf # buildkit |
| RUN /bin/sh -c printf '[supervisord]\nnodaemon=true\nlogfile=/dev/stdout\nlogfile_maxbytes=0\npidfile=/var/run/supervisord.pid\n\n[program:nginx]\ncommand=nginx -g "daemon off;"\nautostart=true\nautorestart=true\nstdout_logfile=/dev/stdout\nstdout_logfile_maxbytes=0\nstderr_logfile=/dev/stderr\nstderr_logfile_maxbytes=0\n\n[program:php-fpm]\ncommand=php-fpm\nautostart=true\nautorestart=true\nstdout_logfile=/dev/stdout\nstdout_logfile_maxbytes=0\nstderr_logfile=/dev/stderr\nstderr_logfile_maxbytes=0\n' > /etc/supervisord.conf # buildkit |
| RUN /bin/sh -c printf '#!/bin/sh\nset -e\nmkdir -p /var/www/html/storage/framework/cache\nmkdir -p /var/www/html/storage/framework/sessions\nmkdir -p /var/www/html/storage/framework/views\nmkdir -p /var/www/html/storage/logs\nmkdir -p /var/www/html/bootstrap/cache\nif [ "$(id -u)" = "0" ]; then\n chown -R www-data:www-data /var/www/html/storage /var/www/html/bootstrap/cache\nfi\nphp artisan migrate --force\nphp artisan storage:link --force\nphp artisan config:cache\nphp artisan route:cache\nphp artisan view:cache\nexec supervisord -c /etc/supervisord.conf\n' > /entrypoint.sh && chmod +x /entrypoint.sh # buildkit |
| HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost/up || exit 1"] "30s" "5s" "10s" "0s" '\x03'} |
| EXPOSE [80/tcp] |
| CMD ["/entrypoint.sh"] |
Details
2026-01-01 20:28:02 +01:00
Versions (39)
View all
Container
1
OCI / Docker
linux/amd64
83 MiB
buildcache
2026-01-11
9e067c474ea58f2ec70edea6443b93901df50c3d
2026-01-11
main
2026-01-11
8c01eb535cbc397746b907a56baf82f1a7e2b066
2026-01-11
842a70c9f15398d98abedeb880e04c362b28f868
2026-01-11