gitea_admin
  • Joined on 2026-02-12

valuestockfinder-scheduler (1b12eae2a4178dcf98b9a0c18e6b362870084b27)

Published 2026-08-17 15:48:12 +00:00 by gitea_admin

Installation

docker pull gitea.imhochrain.ch/gitea_admin/valuestockfinder-scheduler:1b12eae2a4178dcf98b9a0c18e6b362870084b27
sha256:14b86295470bb6040c407fdfb101320edb415f2d4cc5f3a44fecd559d4412c68

Image Layers

ADD alpine-minirootfs-3.24.1-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=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
ENV PHP_VERSION=8.2.31
ENV PHP_URL=https://www.php.net/distributions/php-8.2.31.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.2.31.tar.xz.asc
ENV PHP_SHA256=95eae411d594fe6f6e5678b76645dc13ae47d3c0a5325c1d969b58dea56ee45a
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 $(test "$gnuArch" = 'riscv64-linux-musl' && echo '--without-pcre-jit') ; 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"]
WORKDIR /app
/bin/sh -c apk add --no-cache bash ca-certificates docker-cli tzdata && apk add --no-cache bzip2-dev openldap-dev postgresql-libs && apk add --no-cache --virtual .build-deps $PHPIZE_DEPS postgresql-dev linux-headers && docker-php-ext-install bcmath bz2 ldap pcntl shmop sockets pdo_pgsql pgsql && apk del .build-deps && ln -sf /usr/bin/docker /usr/local/bin/docker
COPY file:1ec1e18827a23de0a943197612c127902b8b79e21d5e48f09ebb7ac02790dbdf in ./config.php
COPY dir:b1b500e52d6347fcba52a20405f1c90de24f3af72b92e70811fe69d7a9913d40 in ./lib
COPY dir:5c65e32b3c38d20821d677463c20ce263b57c98e4308e40359ccc79db6fadc1d in ./modules
COPY dir:da41003eb3abf7a90a829693083fc044c11d3f38df58e36aad229f4b0970c6d6 in ./scripts
COPY dir:6398f83ec0cd3d710afc5504a2ceef856d4f2a0345ed37b88ebe3aa2b841d1c4 in ./shared
COPY file:238bc0fd42340c7179ea1fcd7f5e07a1750e1278246c02c90c5ee759ba753d91 in /etc/crontabs/root
COPY file:36845fbcd5ae5d9d1101e2f10cbf7d75f825d6f9b714ee177e27c50aacb9266e in /usr/local/bin/run-task
/bin/sh -c chmod +x /usr/local/bin/run-task && chmod 0644 /etc/crontabs/root
CMD ["crond" "-f" "-l" "8" "-L" "/dev/stdout"]
Details
Container
2026-08-17 15:48:12 +00:00
1
OCI / Docker
linux/amd64
63 MiB
Versions (122) View all