Block a user
alta-tool-hub (3000ced3566d92d305d41a99c8b1b926fc5e3d4c)
Published 2026-08-03 00:37:28 +00:00 by peji
Installation
docker pull git.pejicorp.com/peji/alta-tool-hub:3000ced3566d92d305d41a99c8b1b926fc5e3d4csha256:47f74feb7c783b3b6c4a68fadbb923d34b209888716164b86fb9cea0454ffc91
About this package
Production Alta Tool Hub static frontend and internal-tool proxy
Image Layers
| ADD alpine-minirootfs-3.21.3-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com> |
| ENV NGINX_VERSION=1.27.5 |
| ENV PKG_RELEASE=1 |
| ENV DYNPKG_RELEASE=1 |
| ARG UID=101 |
| ARG GID=101 |
| RUN |2 UID=101 GID=101 /bin/sh -c set -x && addgroup -g $GID -S nginx || true && adduser -S -D -H -u $UID -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx || true && apkArch="$(cat /etc/apk/arch)" && nginxPackages=" nginx=${NGINX_VERSION}-r${PKG_RELEASE} " && apk add --no-cache --virtual .checksum-deps openssl && case "$apkArch" in x86_64|aarch64) set -x && KEY_SHA512="e09fa32f0a0eab2b879ccbbc4d0e4fb9751486eedda75e35fac65802cc9faa266425edf83e261137a2f4d16281ce2c1a5f4502930fe75154723da014214f0655" && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub && if echo "$KEY_SHA512 */tmp/nginx_signing.rsa.pub" | sha512sum -c -; then echo "key verification succeeded!"; mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/; else echo "key verification failed!"; exit 1; fi && apk add -X "https://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages ;; *) set -x && tempDir="$(mktemp -d)" && chown nobody:nobody $tempDir && apk add --no-cache --virtual .build-deps gcc libc-dev make openssl-dev pcre2-dev zlib-dev linux-headers bash alpine-sdk findutils curl && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz && PKGOSSCHECKSUM=\"c773d98b567bd585c17f55702bf3e4c7d82b676bfbde395270e90a704dca3c758dfe0380b3f01770542b4fd9bed1f1149af4ce28bfc54a27a96df6b700ac1745 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" && if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then echo \"pkg-oss tarball checksum verification succeeded!\"; else echo \"pkg-oss tarball checksum verification failed!\"; exit 1; fi && tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz && cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE} && cd alpine && make base && apk index --allow-untrusted -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz " && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ && apk del --no-network .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && apk del --no-network .checksum-deps && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi && if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi && apk add --no-cache gettext-envsubst && apk add --no-cache tzdata && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d # buildkit |
| RUN |2 UID=101 GID=101 /bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,\(/var\)\{0\,1\}/run/nginx.pid,/tmp/nginx.pid,' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf && chown -R $UID:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R $UID:0 /etc/nginx && chmod -R g+w /etc/nginx # buildkit |
| COPY docker-entrypoint.sh / # buildkit |
| COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit |
| COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit |
| COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit |
| COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit |
| ENTRYPOINT ["/docker-entrypoint.sh"] |
| EXPOSE map[8080/tcp:{}] |
| STOPSIGNAL SIGQUIT |
| USER 101 |
| CMD ["nginx" "-g" "daemon off;"] |
| ENV NJS_VERSION=0.8.10 |
| ENV NJS_RELEASE=1 |
| ARG UID=101 |
| ARG GID=101 |
| USER root |
| RUN |2 UID=101 GID=101 /bin/sh -c set -x && apkArch="$(cat /etc/apk/arch)" && nginxPackages=" nginx=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE} " && apk add --no-cache --virtual .checksum-deps openssl && case "$apkArch" in x86_64|aarch64) apk add -X "https://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages ;; *) set -x && tempDir="$(mktemp -d)" && chown nobody:nobody $tempDir && apk add --no-cache --virtual .build-deps gcc libc-dev make openssl-dev pcre2-dev zlib-dev linux-headers libxslt-dev gd-dev geoip-dev libedit-dev bash alpine-sdk findutils curl && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz && PKGOSSCHECKSUM=\"c773d98b567bd585c17f55702bf3e4c7d82b676bfbde395270e90a704dca3c758dfe0380b3f01770542b4fd9bed1f1149af4ce28bfc54a27a96df6b700ac1745 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" && if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then echo \"pkg-oss tarball checksum verification succeeded!\"; else echo \"pkg-oss tarball checksum verification failed!\"; exit 1; fi && tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz && cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE} && cd alpine && make module-geoip module-image-filter module-njs module-xslt && apk index --allow-untrusted -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz " && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/ && apk del --no-network .build-deps && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages ;; esac && apk del --no-network .checksum-deps && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi && if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi && apk add --no-cache curl ca-certificates # buildkit |
| USER 101 |
| LABEL org.opencontainers.image.title=Alta Video Tool Hub org.opencontainers.image.description=Static Tool Hub landing page for Alta SE tools org.opencontainers.image.source=https://git.pejicorp.com/peji/alta-tool-hub |
| COPY --chown=101:101 nginx.conf /etc/nginx/conf.d/default.conf # buildkit |
| COPY --chown=101:101 index.html alta-proxy-tool.html tool-hub.css tool-hub.js support.js Alta SE Console.dc.html /usr/share/nginx/html/ # buildkit |
| EXPOSE [8080/tcp] |
| HEALTHCHECK {Test:[CMD-SHELL wget -qO- http://127.0.0.1:8080/healthz >/dev/null || exit 1] Interval:30s Timeout:3s StartPeriod:5s StartInterval:0s Retries:3} |
| ARG SOURCE_COMMIT=3000ced3566d92d305d41a99c8b1b926fc5e3d4c |
| LABEL org.opencontainers.image.title=Alta Video Tool Hub org.opencontainers.image.description=Production Alta Tool Hub static frontend and internal-tool proxy org.opencontainers.image.source=https://git.pejicorp.com/peji/alta-tool-hub org.opencontainers.image.revision=3000ced3566d92d305d41a99c8b1b926fc5e3d4c |
| USER root |
| RUN |1 SOURCE_COMMIT=3000ced3566d92d305d41a99c8b1b926fc5e3d4c /bin/sh -c rm -rf /usr/share/nginx/html/* && rm -f /etc/nginx/conf.d/default.conf && mkdir -p /usr/share/nginx/html/config /usr/share/nginx/html/downloads /usr/share/nginx/html/tco /usr/share/nginx/html/network-guide /etc/nginx/templates # buildkit |
| COPY --chown=101:101 nginx.conf /etc/nginx/templates/default.conf.template # buildkit |
| COPY --chown=101:101 nginx-tool-status.conf /etc/nginx/tool-status.conf # buildkit |
| COPY --chown=101:101 index.html alta-proxy-tool.html tco-calculator.html network-guide.html tool-hub.css tool-hub.js support.js Alta SE Console.dc.html alta-internal-tool-hub.css alta-theme-toggle.css alta-theme-toggle.js alta-retheme3.css alta-retheme3.js alta-retheme4.css alta-retheme4.js alta-retheme5.css alta-retheme5.js /usr/share/nginx/html/ # buildkit |
| COPY --chown=101:101 config/tool-hub-content.json config/tool-hub-content.internal.json config/tool-hub-content.dev.json /usr/share/nginx/html/config/ # buildkit |
| COPY --chown=101:101 downloads/ /usr/share/nginx/html/downloads/ # buildkit |
| COPY --chown=101:101 tco/ /usr/share/nginx/html/tco/ # buildkit |
| COPY --chown=101:101 network-guide/ /usr/share/nginx/html/network-guide/ # buildkit |
| USER 101:101 |
| EXPOSE [8080/tcp] |
| HEALTHCHECK {Test:[CMD-SHELL wget -qO- http://127.0.0.1:8080/healthz >/dev/null || exit 1] Interval:30s Timeout:3s StartPeriod:5s StartInterval:0s Retries:3} |
Labels
| Key | Value |
|---|---|
| maintainer | NGINX Docker Maintainers <docker-maint@nginx.com> |
| org.opencontainers.image.created | 2025-06-23T02:05:23.879Z |
| org.opencontainers.image.description | Production Alta Tool Hub static frontend and internal-tool proxy |
| org.opencontainers.image.licenses | Apache-2.0 |
| org.opencontainers.image.revision | 3000ced3566d92d305d41a99c8b1b926fc5e3d4c |
| org.opencontainers.image.source | https://git.pejicorp.com/peji/alta-tool-hub |
| org.opencontainers.image.title | Alta Video Tool Hub |
| org.opencontainers.image.url | https://github.com/nginx/docker-nginx-unprivileged |
| org.opencontainers.image.version | 1.27.5-alpine |
Details
2026-08-03 00:37:28 +00:00
Versions (6)
View all
Container
3
OCI / Docker
linux/amd64
Apache-2.0
207 MiB
49754255a7c4ed7e5ebd3496156ee3f995d6df42
2026-08-22
37c0346f4b014210dd5124ac9e75294042a53ea8
2026-08-03
a4331e8478631d898dfaf0b8074e7bf640d4fa54
2026-08-03
5ea2ac56d50a129efab43c1ecc944303d0bde19c
2026-08-03
3000ced3566d92d305d41a99c8b1b926fc5e3d4c
2026-08-03