2023-05-25 04:25:14 UTC
46.4 MB
/root
LSIO_FIRST_PARTYtrue
PATH/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)\$
S6_CMD_WAIT_FOR_SERVICES_MAXTIME0
S6_STAGE2_HOOK/docker-mods
S6_VERBOSITY1
TERMxterm
VIRTUAL_ENV/lsiopy
[#000] sha256:dda0c784a5c6df17531cfd83edaf427949321f8a6718ff45d14d0854265b0bd1 - 11.8% (5.48 MB)
[#001] sha256:a55b6a7607b3f829afa6b52770cd3aa03660181ed7c7e58685400a1bd1bc5886 - 0.01% (3.62 KB)
[#002] sha256:f6c43c1fa12145eeaa909202dc32b362c2c2f7ef5542d0c6669ed3cd76648cd6 - 0.0% (956 Bytes)
[#003] sha256:bad0caf163d98b3b411b78c06690cc6cad42c471c8c78e64b792116f21608f59 - 9.17% (4.26 MB)
[#004] sha256:946cb8c5e9cd6f8943633cc334e913f2e08a069761ca93c8f5de5496d0ddea3a - 0.01% (3.12 KB)
[#005] sha256:74dc983c2a38753e9272c7cde3155195cfb794eeaf052189b9a79fbccfb3cfde - 23.2% (10.8 MB)
[#006] sha256:eeff4c5dbef7ece385300980c3c31fb4c3408acd28e173eab5107e6420e54e0f - 0.02% (8.04 KB)
[#007] sha256:6181733f88f832406e9f6796128825bc073ae6490202f5ed7930adee372b37e3 - 55.8% (25.9 MB)
COPY /root-out/ / # buildkit
2023-05-16 15:58:06 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-16 15:58:06 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-16 15:58:06 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2023-05-16 15:58:06 UTC (buildkit.dockerfile.v0)ARG PKG_INST_VERSION=v1
2023-05-16 15:58:06 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 579d97af-ls22 Build-date:- 2023-05-16T15:57:12+00:00
2023-05-16 15:58:06 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2023-05-16 15:58:06 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2023-05-16 15:58:06 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/package-install.v1 /etc/s6-overlay/s6-rc.d/init-mods-package-install/run # buildkit
2023-05-16 15:58:06 UTC (buildkit.dockerfile.v0)ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1 S6_STAGE2_HOOK=/docker-mods VIRTUAL_ENV=/lsiopy PATH=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-05-16 15:58:07 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2023-05-16T15:57:12+00:00 VERSION=579d97af-ls22 MODS_VERSION=v3 PKG_INST_VERSION=v1 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache alpine-release bash ca-certificates coreutils curl jq netcat-openbsd procps shadow tzdata && echo "**** create abc user and make our folders ****" && groupmod -g 1000 users && useradd -u 911 -U -d /config -s /bin/false abc && usermod -G users abc && mkdir -p /app /config /defaults /lsiopy && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
2023-05-16 15:58:07 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-16 15:58:07 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-05-18 14:02:24 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git logrotate nano nginx openssl php81 php81-fileinfo php81-fpm php81-json php81-mbstring php81-openssl php81-session php81-simplexml php81-xml php81-xmlwriter php81-zlib && echo "**** configure nginx ****" && echo 'fastcgi_param HTTP_PROXY ""; # https://httpoxy.org/' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param PATH_INFO $fastcgi_path_info; # http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_split_path_info' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/#connecting-nginx-to-php-fpm' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SERVER_NAME $host; # Send HTTP_HOST as SERVER_NAME. If HTTP_HOST is blank, send the value of server_name from nginx (default is `_`)' >> /etc/nginx/fastcgi_params && rm -f /etc/nginx/conf.d/stream.conf && rm -f /etc/nginx/http.d/default.conf && echo "**** configure php ****" && sed -i "s#;error_log = log/php81/error.log.*#error_log = /config/log/php/error.log#g" /etc/php81/php-fpm.conf && sed -i "s#user = nobody.*#user = abc#g" /etc/php81/php-fpm.d/www.conf && sed -i "s#group = nobody.*#group = abc#g" /etc/php81/php-fpm.d/www.conf && echo "**** fix logrotate ****" && sed -i "s#/var/log/messages {}.*# #g" /etc/logrotate.conf && sed -i 's#/usr/sbin/logrotate /etc/logrotate.conf#/usr/sbin/logrotate /etc/logrotate.conf -s /config/log/logrotate.status#g' /etc/periodic/daily/logrotate # buildkit
2023-05-18 14:02:24 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-18 14:02:24 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2023-05-25 04:25:14 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2023-05-25 04:25:14 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-25 04:25:14 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-25 04:25:14 UTC (buildkit.dockerfile.v0)ARG NGINX_VERSION
2023-05-25 04:25:14 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 1.22.1-r0-ls225 Build-date:- 2023-05-25T04:22:49+00:00
2023-05-25 04:25:14 UTC (buildkit.dockerfile.v0)LABEL maintainer=aptalca
2023-05-25 04:25:14 UTC (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2023-05-25T04:22:49+00:00 VERSION=1.22.1-r0-ls225 NGINX_VERSION=1.22.1-r0 /bin/sh -c if [ -z ${NGINX_VERSION+x} ]; then NGINX_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.17/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:nginx$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); fi && apk add --no-cache --upgrade memcached nginx==${NGINX_VERSION} nginx-mod-http-brotli==${NGINX_VERSION} nginx-mod-http-dav-ext==${NGINX_VERSION} nginx-mod-http-echo==${NGINX_VERSION} nginx-mod-http-fancyindex==${NGINX_VERSION} nginx-mod-http-geoip==${NGINX_VERSION} nginx-mod-http-geoip2==${NGINX_VERSION} nginx-mod-http-headers-more==${NGINX_VERSION} nginx-mod-http-image-filter==${NGINX_VERSION} nginx-mod-http-perl==${NGINX_VERSION} nginx-mod-http-redis2==${NGINX_VERSION} nginx-mod-http-set-misc==${NGINX_VERSION} nginx-mod-http-upload-progress==${NGINX_VERSION} nginx-mod-http-xslt-filter==${NGINX_VERSION} nginx-mod-mail==${NGINX_VERSION} nginx-mod-rtmp==${NGINX_VERSION} nginx-mod-stream==${NGINX_VERSION} nginx-mod-stream-geoip==${NGINX_VERSION} nginx-mod-stream-geoip2==${NGINX_VERSION} nginx-vim==${NGINX_VERSION} php81-bcmath php81-bz2 php81-ctype php81-curl php81-dom php81-exif php81-ftp php81-gd php81-gmp php81-iconv php81-imap php81-intl php81-ldap php81-mysqli php81-mysqlnd php81-opcache php81-pdo_mysql php81-pdo_odbc php81-pdo_pgsql php81-pdo_sqlite php81-pear php81-pecl-apcu php81-pecl-mailparse php81-pecl-memcached php81-pecl-redis php81-pgsql php81-phar php81-posix php81-soap php81-sockets php81-sodium php81-sqlite3 php81-tokenizer php81-xmlreader php81-xsl php81-zip && apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing php81-pecl-mcrypt php81-pecl-xmlrpc # buildkit
2023-05-25 04:25:14 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2023-05-25 04:25:14 UTC (buildkit.dockerfile.v0)VOLUME [/config]
2023-05-25 04:25:04 UTC
42.1 MB
/root
LSIO_FIRST_PARTYtrue
PATH/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)\$
S6_CMD_WAIT_FOR_SERVICES_MAXTIME0
S6_STAGE2_HOOK/docker-mods
S6_VERBOSITY1
TERMxterm
VIRTUAL_ENV/lsiopy
[#000] sha256:41c61f80113ab0ac5b293a68753c6fcf4d73e63c7c48b67a2d21f26e5fba6efa - 12.78% (5.38 MB)
[#001] sha256:a55b6a7607b3f829afa6b52770cd3aa03660181ed7c7e58685400a1bd1bc5886 - 0.01% (3.62 KB)
[#002] sha256:726dd489f7072ceadd4599a259be5c09813336ecbacb026bdbbd006dccd87ff3 - 0.0% (958 Bytes)
[#003] sha256:df43dd99000b90e66f1f04bfdd029ff658f45e2b981ec42ba0208292f0f2dc32 - 12.94% (5.45 MB)
[#004] sha256:666e50a4409afc7e8bda5ad8dd96a6c341eaf9913ff77c387f7a2e46af43cbca - 0.01% (3.12 KB)
[#005] sha256:3dc267045d1ad1fe557e22b7e55a7e50ee4dc3cdacaff271279e048094f15cc3 - 22.02% (9.27 MB)
[#006] sha256:4d9785cdacd46a8d68989fa191d1512320c8a412368b397052c407248c77b530 - 0.02% (8.04 KB)
[#007] sha256:3185dca9af9ee42e3f352f97f7b404f2ca876a60bec704b8234686bdacaa77d5 - 52.23% (22 MB)
COPY /root-out/ / # buildkit
2023-05-16 15:58:09 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-16 15:58:09 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-16 15:58:09 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2023-05-16 15:58:09 UTC (buildkit.dockerfile.v0)ARG PKG_INST_VERSION=v1
2023-05-16 15:58:09 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 579d97af-ls22 Build-date:- 2023-05-16T15:57:12+00:00
2023-05-16 15:58:09 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2023-05-16 15:58:09 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2023-05-16 15:58:09 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/package-install.v1 /etc/s6-overlay/s6-rc.d/init-mods-package-install/run # buildkit
2023-05-16 15:58:09 UTC (buildkit.dockerfile.v0)ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1 S6_STAGE2_HOOK=/docker-mods VIRTUAL_ENV=/lsiopy PATH=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-05-16 15:58:11 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2023-05-16T15:57:12+00:00 VERSION=579d97af-ls22 MODS_VERSION=v3 PKG_INST_VERSION=v1 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache alpine-release bash ca-certificates coreutils curl jq netcat-openbsd procps shadow tzdata && echo "**** create abc user and make our folders ****" && groupmod -g 1000 users && useradd -u 911 -U -d /config -s /bin/false abc && usermod -G users abc && mkdir -p /app /config /defaults /lsiopy && echo "**** add qemu ****" && curl -o /usr/bin/qemu-arm-static -L "https://lsio-ci.ams3.digitaloceanspaces.com/qemu-arm-static" && chmod +x /usr/bin/qemu-arm-static && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
2023-05-16 15:58:12 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-16 15:58:12 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-05-18 14:02:31 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git logrotate nano nginx openssl php81 php81-fileinfo php81-fpm php81-json php81-mbstring php81-openssl php81-session php81-simplexml php81-xml php81-xmlwriter php81-zlib && echo "**** configure nginx ****" && echo 'fastcgi_param HTTP_PROXY ""; # https://httpoxy.org/' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param PATH_INFO $fastcgi_path_info; # http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_split_path_info' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/#connecting-nginx-to-php-fpm' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SERVER_NAME $host; # Send HTTP_HOST as SERVER_NAME. If HTTP_HOST is blank, send the value of server_name from nginx (default is `_`)' >> /etc/nginx/fastcgi_params && rm -f /etc/nginx/conf.d/stream.conf && rm -f /etc/nginx/http.d/default.conf && echo "**** configure php ****" && sed -i "s#;error_log = log/php81/error.log.*#error_log = /config/log/php/error.log#g" /etc/php81/php-fpm.conf && sed -i "s#user = nobody.*#user = abc#g" /etc/php81/php-fpm.d/www.conf && sed -i "s#group = nobody.*#group = abc#g" /etc/php81/php-fpm.d/www.conf && echo "**** fix logrotate ****" && sed -i "s#/var/log/messages {}.*# #g" /etc/logrotate.conf && sed -i 's#/usr/sbin/logrotate /etc/logrotate.conf#/usr/sbin/logrotate /etc/logrotate.conf -s /config/log/logrotate.status#g' /etc/periodic/daily/logrotate # buildkit
2023-05-18 14:02:31 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-18 14:02:31 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2023-05-25 04:25:04 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2023-05-25 04:25:04 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-25 04:25:04 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-25 04:25:04 UTC (buildkit.dockerfile.v0)ARG NGINX_VERSION
2023-05-25 04:25:04 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 1.22.1-r0-ls225 Build-date:- 2023-05-25T04:22:49+00:00
2023-05-25 04:25:04 UTC (buildkit.dockerfile.v0)LABEL maintainer=aptalca
2023-05-25 04:25:04 UTC (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2023-05-25T04:22:49+00:00 VERSION=1.22.1-r0-ls225 NGINX_VERSION=1.22.1-r0 /bin/sh -c if [ -z ${NGINX_VERSION+x} ]; then NGINX_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.17/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:nginx$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); fi && apk add --no-cache --upgrade memcached nginx==${NGINX_VERSION} nginx-mod-http-brotli==${NGINX_VERSION} nginx-mod-http-dav-ext==${NGINX_VERSION} nginx-mod-http-echo==${NGINX_VERSION} nginx-mod-http-fancyindex==${NGINX_VERSION} nginx-mod-http-geoip==${NGINX_VERSION} nginx-mod-http-geoip2==${NGINX_VERSION} nginx-mod-http-headers-more==${NGINX_VERSION} nginx-mod-http-image-filter==${NGINX_VERSION} nginx-mod-http-perl==${NGINX_VERSION} nginx-mod-http-redis2==${NGINX_VERSION} nginx-mod-http-set-misc==${NGINX_VERSION} nginx-mod-http-upload-progress==${NGINX_VERSION} nginx-mod-http-xslt-filter==${NGINX_VERSION} nginx-mod-mail==${NGINX_VERSION} nginx-mod-rtmp==${NGINX_VERSION} nginx-mod-stream==${NGINX_VERSION} nginx-mod-stream-geoip==${NGINX_VERSION} nginx-mod-stream-geoip2==${NGINX_VERSION} nginx-vim==${NGINX_VERSION} php81-bcmath php81-bz2 php81-ctype php81-curl php81-dom php81-exif php81-ftp php81-gd php81-gmp php81-iconv php81-imap php81-intl php81-ldap php81-mysqli php81-mysqlnd php81-opcache php81-pdo_mysql php81-pdo_odbc php81-pdo_pgsql php81-pdo_sqlite php81-pear php81-pecl-apcu php81-pecl-mailparse php81-pecl-memcached php81-pecl-redis php81-pgsql php81-phar php81-posix php81-soap php81-sockets php81-sodium php81-sqlite3 php81-tokenizer php81-xmlreader php81-xsl php81-zip && apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing php81-pecl-mcrypt php81-pecl-xmlrpc # buildkit
2023-05-25 04:25:04 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2023-05-25 04:25:04 UTC (buildkit.dockerfile.v0)VOLUME [/config]
2023-05-25 04:25:02 UTC
48.6 MB
/root
LSIO_FIRST_PARTYtrue
PATH/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)\$
S6_CMD_WAIT_FOR_SERVICES_MAXTIME0
S6_STAGE2_HOOK/docker-mods
S6_VERBOSITY1
TERMxterm
VIRTUAL_ENV/lsiopy
[#000] sha256:06ecb618eb43eb36318b4c8348790abf128437db056b68b85f1f5c82b8f133b4 - 13.07% (6.36 MB)
[#001] sha256:a55b6a7607b3f829afa6b52770cd3aa03660181ed7c7e58685400a1bd1bc5886 - 0.01% (3.62 KB)
[#002] sha256:093702993199b367e4fcb60fca68fa0281de47789e6297b84f47ad45f9c175c8 - 0.0% (957 Bytes)
[#003] sha256:6bffd0cc65e5bcc8e72a61a04e106daa67f0da4dddaee56a649bcfc35b2a9690 - 12.38% (6.02 MB)
[#004] sha256:d24097d2c9dff2caf6539b259d02edcdf6689eb3a2d4e8391ffd078ddc840121 - 0.01% (3.12 KB)
[#005] sha256:0d9cd51abedb84c603b217875078d73ab34c34b7b24781d4e6f7dafe8e390ecb - 21.83% (10.6 MB)
[#006] sha256:257fc0c0f167ca300030d8d6349393ac9732d826469ddb338ea46cc83b749c2d - 0.02% (8.03 KB)
[#007] sha256:54d51ff82d20d75a45a72993a5e4821bdfa92af275f4b25edf7aab1e859afb41 - 52.69% (25.6 MB)
COPY /root-out/ / # buildkit
2023-05-16 15:58:24 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-16 15:58:24 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-16 15:58:24 UTC (buildkit.dockerfile.v0)ARG MODS_VERSION=v3
2023-05-16 15:58:24 UTC (buildkit.dockerfile.v0)ARG PKG_INST_VERSION=v1
2023-05-16 15:58:24 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 579d97af-ls22 Build-date:- 2023-05-16T15:57:12+00:00
2023-05-16 15:58:24 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2023-05-16 15:58:24 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
2023-05-16 15:58:24 UTC (buildkit.dockerfile.v0)ADD https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/package-install.v1 /etc/s6-overlay/s6-rc.d/init-mods-package-install/run # buildkit
2023-05-16 15:58:24 UTC (buildkit.dockerfile.v0)ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1 S6_STAGE2_HOOK=/docker-mods VIRTUAL_ENV=/lsiopy PATH=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-05-16 15:58:27 UTC (buildkit.dockerfile.v0)RUN |4 BUILD_DATE=2023-05-16T15:57:12+00:00 VERSION=579d97af-ls22 MODS_VERSION=v3 PKG_INST_VERSION=v1 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache alpine-release bash ca-certificates coreutils curl jq netcat-openbsd procps shadow tzdata && echo "**** create abc user and make our folders ****" && groupmod -g 1000 users && useradd -u 911 -U -d /config -s /bin/false abc && usermod -G users abc && mkdir -p /app /config /defaults /lsiopy && echo "**** add qemu ****" && curl -o /usr/bin/qemu-aarch64-static -L "https://lsio-ci.ams3.digitaloceanspaces.com/qemu-aarch64-static" && chmod +x /usr/bin/qemu-aarch64-static && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
2023-05-16 15:58:27 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-16 15:58:27 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-05-18 14:02:28 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c echo "**** install build packages ****" && apk add --no-cache apache2-utils git logrotate nano nginx openssl php81 php81-fileinfo php81-fpm php81-json php81-mbstring php81-openssl php81-session php81-simplexml php81-xml php81-xmlwriter php81-zlib && echo "**** configure nginx ****" && echo 'fastcgi_param HTTP_PROXY ""; # https://httpoxy.org/' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param PATH_INFO $fastcgi_path_info; # http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_split_path_info' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/#connecting-nginx-to-php-fpm' >> /etc/nginx/fastcgi_params && echo 'fastcgi_param SERVER_NAME $host; # Send HTTP_HOST as SERVER_NAME. If HTTP_HOST is blank, send the value of server_name from nginx (default is `_`)' >> /etc/nginx/fastcgi_params && rm -f /etc/nginx/conf.d/stream.conf && rm -f /etc/nginx/http.d/default.conf && echo "**** configure php ****" && sed -i "s#;error_log = log/php81/error.log.*#error_log = /config/log/php/error.log#g" /etc/php81/php-fpm.conf && sed -i "s#user = nobody.*#user = abc#g" /etc/php81/php-fpm.d/www.conf && sed -i "s#group = nobody.*#group = abc#g" /etc/php81/php-fpm.d/www.conf && echo "**** fix logrotate ****" && sed -i "s#/var/log/messages {}.*# #g" /etc/logrotate.conf && sed -i 's#/usr/sbin/logrotate /etc/logrotate.conf#/usr/sbin/logrotate /etc/logrotate.conf -s /config/log/logrotate.status#g' /etc/periodic/daily/logrotate # buildkit
2023-05-18 14:02:28 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-05-18 14:02:28 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2023-05-25 04:25:02 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2023-05-25 04:25:02 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-05-25 04:25:02 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-05-25 04:25:02 UTC (buildkit.dockerfile.v0)ARG NGINX_VERSION
2023-05-25 04:25:02 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 1.22.1-r0-ls225 Build-date:- 2023-05-25T04:22:49+00:00
2023-05-25 04:25:02 UTC (buildkit.dockerfile.v0)LABEL maintainer=aptalca
2023-05-25 04:25:02 UTC (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2023-05-25T04:22:49+00:00 VERSION=1.22.1-r0-ls225 NGINX_VERSION=1.22.1-r0 /bin/sh -c if [ -z ${NGINX_VERSION+x} ]; then NGINX_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.17/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:nginx$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); fi && apk add --no-cache --upgrade memcached nginx==${NGINX_VERSION} nginx-mod-http-brotli==${NGINX_VERSION} nginx-mod-http-dav-ext==${NGINX_VERSION} nginx-mod-http-echo==${NGINX_VERSION} nginx-mod-http-fancyindex==${NGINX_VERSION} nginx-mod-http-geoip==${NGINX_VERSION} nginx-mod-http-geoip2==${NGINX_VERSION} nginx-mod-http-headers-more==${NGINX_VERSION} nginx-mod-http-image-filter==${NGINX_VERSION} nginx-mod-http-perl==${NGINX_VERSION} nginx-mod-http-redis2==${NGINX_VERSION} nginx-mod-http-set-misc==${NGINX_VERSION} nginx-mod-http-upload-progress==${NGINX_VERSION} nginx-mod-http-xslt-filter==${NGINX_VERSION} nginx-mod-mail==${NGINX_VERSION} nginx-mod-rtmp==${NGINX_VERSION} nginx-mod-stream==${NGINX_VERSION} nginx-mod-stream-geoip==${NGINX_VERSION} nginx-mod-stream-geoip2==${NGINX_VERSION} nginx-vim==${NGINX_VERSION} php81-bcmath php81-bz2 php81-ctype php81-curl php81-dom php81-exif php81-ftp php81-gd php81-gmp php81-iconv php81-imap php81-intl php81-ldap php81-mysqli php81-mysqlnd php81-opcache php81-pdo_mysql php81-pdo_odbc php81-pdo_pgsql php81-pdo_sqlite php81-pear php81-pecl-apcu php81-pecl-mailparse php81-pecl-memcached php81-pecl-redis php81-pgsql php81-phar php81-posix php81-soap php81-sockets php81-sodium php81-sqlite3 php81-tokenizer php81-xmlreader php81-xsl php81-zip && apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing php81-pecl-mcrypt php81-pecl-xmlrpc # buildkit
2023-05-25 04:25:02 UTC (buildkit.dockerfile.v0)EXPOSE map[443/tcp:{} 80/tcp:{}]
2023-05-25 04:25:02 UTC (buildkit.dockerfile.v0)VOLUME [/config]