php-deployer (sha256:a164dba847c0c8658e527571b369b2e7e3935beb0a727a999236d140807e50b6)
Installation
docker pull git.kjan.de/actions/php-deployer@sha256:a164dba847c0c8658e527571b369b2e7e3935beb0a727a999236d140807e50b6
sha256:a164dba847c0c8658e527571b369b2e7e3935beb0a727a999236d140807e50b6
Image Layers
ADD file:5d673d25da3a14ce1f6cf66e4c7fd4f4b85a3759a9d93efb3fd9ff852b5b56e4 in / |
CMD ["/bin/sh"] |
ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c |
/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl |
/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data |
ENV PHP_INI_DIR=/usr/local/etc/php |
/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 777 /var/www/html |
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=528995BFEDFBA7191D46839EF9BA0ADA31CBD89E 39B641343D8C104B2B146DC3F9C39DC0B9698544 F1F692238FBC1666E5A5CCD4199F9DFEF6FFBAFD |
ENV PHP_VERSION=8.1.6 |
ENV PHP_URL=https://www.php.net/distributions/php-8.1.6.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.1.6.tar.xz.asc |
ENV PHP_SHA256=da38d65bb0d5dd56f711cd478204f2b62a74a2c2b0d2d523a78d6eb865b2364c |
/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; if [ -n "$PHP_ASC_URL" ]; then 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"; fi; apk del --no-network .fetch-deps |
COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/ |
/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" ; 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-ftp --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" = 's390x-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 |
COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/ |
/bin/sh -c docker-php-ext-enable sodium |
ENTRYPOINT ["docker-php-entrypoint"] |
CMD ["php" "-a"] |
LABEL maintainer=minkbear@gmail.com |
ARG DEPLOYER_VERSION=6.8.0 |
RUN |1 DEPLOYER_VERSION=6.8.0 /bin/sh -c apk update --no-cache && apk add --no-cache bash openssh-client rsync git zip # buildkit |
RUN |1 DEPLOYER_VERSION=6.8.0 /bin/sh -c curl -LO https://deployer.org/releases/v$DEPLOYER_VERSION/deployer.phar && mv deployer.phar /usr/local/bin/dep && chmod +x /usr/local/bin/dep # buildkit |
RUN |1 DEPLOYER_VERSION=6.8.0 /bin/sh -c curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer # buildkit |
RUN |1 DEPLOYER_VERSION=6.8.0 /bin/sh -c sed -i -e "s/bin\/ash/bin\/bash/" /etc/passwd # buildkit |
COPY ssh-deactivate-key-checking ssh-start-entrypoint ssh-add-known-host /bin/ # buildkit |
ENV LC_ALL=en_US.UTF-8 |
ENTRYPOINT ["ssh-start-entrypoint"] |
RUN /bin/sh -c apk add nodejs sudo # buildkit |
Labels
Key | Value |
---|---|
maintainer | minkbear@gmail.com |
Details
Versions (5)
View all
033623e4ab4ef1f1c31d3e6e8a7077be64a4ab44
2024-08-25
latest
2024-08-25
e5da31dce25686e1b9cb5b7ec70acf23c2c9558c
2024-08-16
e216c144970f7acd4ac7559faa493ef16fabbd8a
2024-08-15
388
2024-08-15