Arthur Erlich haylan

git-contribution-graph (latest)

Published 2026-07-31 13:20:17 +00:00 by haylan in haylan/git-contribution-graph

Installation

docker pull git.arthurerlich.de/haylan/git-contribution-graph:latest
sha256:740c5b7ff0234f17d88079cf847abfacbcef9cda457d55afc4d5074dbeae3e7c

Images

Digest OS / Arch Size
c48af7598c linux/amd64 72 MiB
1d0931d460 linux/arm64 70 MiB

Image Layers ( linux/arm64)

ADD alpine-minirootfs-3.24.1-aarch64.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.24
ENV PHP_URL=https://www.php.net/distributions/php-8.4.24.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.4.24.tar.xz.asc
ENV PHP_SHA256=e127be09a8506f4327c5cfa78a614b00d210714484ec215ce0011b4a03c00731
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)"; test "$PHP_INI_DIR" != "${PHP_INI_DIR%/php}"; ./configure --build="$gnuArch" --sysconfdir="${PHP_INI_DIR%/php}" --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 --enable-phpdbg --enable-phpdbg-readline --with-pear --enable-embed --enable-zts --disable-zend-signals ; 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"]
CMD ["php" "-a"]
ARG TARGETARCH=arm64
WORKDIR /app
RUN |1 TARGETARCH=arm64 /bin/sh -c apk add --no-cache ca-certificates libcap mailcap # buildkit
RUN |1 TARGETARCH=arm64 /bin/sh -c set -eux; mkdir -p /app/public /config/caddy /data/caddy /etc/caddy /etc/frankenphp; sed -i 's/php/frankenphp run/g' /usr/local/bin/docker-php-entrypoint # buildkit
COPY caddy/frankenphp/Caddyfile /etc/caddy/Caddyfile # buildkit
COPY package/content/index.php /app/public/index.php # buildkit
RUN |1 TARGETARCH=arm64 /bin/sh -c ln /etc/caddy/Caddyfile /etc/frankenphp/Caddyfile && curl -sSLf -o /usr/local/bin/install-php-extensions https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions && chmod +x /usr/local/bin/install-php-extensions # buildkit
CMD ["--config" "/etc/frankenphp/Caddyfile" "--adapter" "caddyfile"]
HEALTHCHECK {Test:[CMD-SHELL curl -f http://localhost:2019/metrics || exit 1] Interval:0s Timeout:0s StartPeriod:0s StartInterval:0s Retries:0}
ENV XDG_CONFIG_HOME=/config
ENV XDG_DATA_HOME=/data
EXPOSE [80/tcp]
EXPOSE [443/tcp]
EXPOSE [443/udp]
EXPOSE [2019/tcp]
LABEL org.opencontainers.image.title=FrankenPHP
LABEL org.opencontainers.image.description=The modern PHP app server
LABEL org.opencontainers.image.url=https://frankenphp.dev
LABEL org.opencontainers.image.source=https://github.com/php/frankenphp
LABEL org.opencontainers.image.licenses=MIT
LABEL org.opencontainers.image.vendor=Kévin Dunglas
ENV GODEBUG=cgocheck=0
COPY /usr/local/lib/libwatcher* /usr/local/lib/ # buildkit
RUN |1 TARGETARCH=arm64 /bin/sh -c apk add --no-cache libstdc++ && ldconfig /usr/local/lib # buildkit
COPY /usr/local/bin/frankenphp /usr/local/bin/frankenphp # buildkit
RUN |1 TARGETARCH=arm64 /bin/sh -c setcap cap_net_bind_service=+ep /usr/local/bin/frankenphp && frankenphp version && frankenphp build-info # buildkit
RUN /bin/sh -c apk add --no-cache icu-dev libzip-dev && docker-php-ext-install -j$(nproc) intl opcache zip && apk del icu-dev libzip-dev && apk add --no-cache curl icu-libs libzip && cp "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" && mkdir -p $PHP_INI_DIR/app.conf.d # buildkit
ENV PHP_INI_SCAN_DIR=:/usr/local/etc/php/app.conf.d
ENV COMPOSER_ALLOW_SUPERUSER=1
WORKDIR /app
RUN /bin/sh -c addgroup -S app && adduser -S -G app app # buildkit
COPY /app/vendor /app/vendor # buildkit
COPY /app/var/cache/prod /app/var/cache/prod # buildkit
COPY bin/ ./bin/ # buildkit
COPY config/ ./config/ # buildkit
COPY public/ ./public/ # buildkit
COPY src/ ./src/ # buildkit
COPY composer.json composer.lock ./ # buildkit
COPY docker/frankenphp/Caddyfile /etc/caddy/Caddyfile # buildkit
COPY docker/php/conf.d/20-app.prod.ini /usr/local/etc/php/app.conf.d/ # buildkit
RUN /bin/sh -c chmod +x bin/console && mkdir -p var/cache/prod/pools var/log var/data /config/caddy /data/caddy && chown -R app:app /app /config /data # buildkit
USER app
EXPOSE [8080/tcp]
ENV APP_ENV=prod APP_DEBUG=0
CMD ["frankenphp" "run" "--config" "/etc/caddy/Caddyfile"]

Labels

Key Value
dev.frankenphp.base.fingerprint 366e504fdffa9a7177c4bdf530db83f0abee7aca528d9db337dabdbb30acd9e2
org.opencontainers.image.created 2026-07-31T13:06:13.055Z
org.opencontainers.image.description
org.opencontainers.image.licenses
org.opencontainers.image.revision cfde2ed798b1dd10239e1cd4ccb6c6d9459c8a8e
org.opencontainers.image.source http://gitea-server:3000/haylan/git-contribution-graph
org.opencontainers.image.title git-contribution-graph
org.opencontainers.image.url http://gitea-server:3000/haylan/git-contribution-graph
org.opencontainers.image.vendor Kévin Dunglas
org.opencontainers.image.version 0.2.1
Details
Container
2026-07-31 13:20:17 +00:00
7
OCI / Docker
Versions (8) View all
buildcache-prod 2026-08-23
buildcache-dev 2026-08-23
buildcache 2026-07-31
latest 2026-07-31
0.2.1 2026-07-31