Tag
htwk/reco-fe:main
Created
2024-07-25 12:33:47 UTC
Architecture
linux / amd64
Content Digest
Pull Command
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>
ENV
  • PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  • NGINX_VERSION=1.27.0
  • PKG_RELEASE=2
  • NJS_VERSION=0.8.4
  • NJS_RELEASE=2
Layers
  • 001 sha256:46b060cc26202cf98e28414d790b5cabd67094bba50315a1ae2e9daf913fca4f 3.26 MB
  • 002 sha256:21af147d2ad5905372d6284d8ac5031599e2983fa2cc9f8251f9130fdf6bce19 1.83 MB
  • 003 sha256:b3ee43e51ca6c92d08e40eaf4d7dbc50444ba57c1a200c437a3c86e5a7631ba6 627 Bytes
  • 004 sha256:b17a9d410da1886001947f5f826043292df395277cb23e17970f5b82a6b486ed 956 Bytes
  • 005 sha256:542e3e75411d1223efe21092951a0b87b85cb4377accf8f360d635d23dea72a9 393 Bytes
  • 006 sha256:2b2faad386dfd2da1e19aa6e0d91d428b849181de439c0b289f383816c812304 1.18 KB
  • 007 sha256:a5e22afba545a92d46609059fe9fe2b90028b9f3fb7c78be28cb6d4ed9e53fd3 1.37 KB
  • 008 sha256:fb923a41dc10df4d74119907e9112426c8e0e2ce3d6851c4e2dcfb7e0765861b 12.4 MB
  • 009 sha256:64d9aff2a448c2e7547f4bbac74794eefbbced940e5671ca4cd6b6879f867c23 316 Bytes
  • 010 sha256:6b8eb34081765f851b6c413dd4ef2d2a3865c43d6d3d3475410a0713d27c082f 232 Bytes
  • 011 sha256:2e2abc0b3d503d574ae74ab66897921abfbd3de90d868e874a03f8184fd10cc5 2.29 MB
  • 012 sha256:7a488dc301094f4f83a9dcd9344c5261d6b0a9582b7143cc7e38b2fd76adfc85 396 Bytes
  • 013 sha256:4a1560cea9564cdf61b2d77821df368ee4532984576a1707f80e13281108ea48 431 Bytes
History
[2024-06-21 00:41:06 UTC] /bin/sh -c #(nop) ADD file:c644b15c170e2ca46176a566910d40a21dce66518ed8fdfd34ebcf0e9dc90c55 in / [2024-06-21 00:41:06 UTC] /bin/sh -c #(nop) CMD ["/bin/sh"] [2024-06-21 00:41:06 UTC] LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com> [2024-06-21 00:41:06 UTC] ENV NGINX_VERSION=1.27.0 [2024-06-21 00:41:06 UTC] ENV PKG_RELEASE=2 [2024-06-21 00:41:06 UTC] RUN /bin/sh -c set -x && addgroup -g 101 -S nginx && adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx && 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 && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz && PKGOSSCHECKSUM=\"cd3333f4dfa4a873f6df73dfe24e047adc092d779aefb46577b6307ff0d0125543508694a80158b2bfc891167ad763b0d08287829df9924d4c22f50d063e76c0 *${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 --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner /tmp/envsubst | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache $runDeps && apk del --no-network .gettext && mv /tmp/envsubst /usr/local/bin/ && 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 [2024-06-21 00:41:06 UTC] COPY docker-entrypoint.sh / # buildkit [2024-06-21 00:41:06 UTC] COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit [2024-06-21 00:41:06 UTC] COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit [2024-06-21 00:41:06 UTC] COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit [2024-06-21 00:41:06 UTC] COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit [2024-06-21 00:41:06 UTC] ENTRYPOINT ["/docker-entrypoint.sh"] [2024-06-21 00:41:06 UTC] EXPOSE map[80/tcp:{}] [2024-06-21 00:41:06 UTC] STOPSIGNAL SIGQUIT [2024-06-21 00:41:06 UTC] CMD ["nginx" "-g" "daemon off;"] [2024-06-21 00:41:06 UTC] ENV NJS_VERSION=0.8.4 [2024-06-21 00:41:06 UTC] ENV NJS_RELEASE=2 [2024-06-21 00:41:06 UTC] RUN /bin/sh -c set -x && apkArch="$(cat /etc/apk/arch)" && nginxPackages=" nginx=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-r${PKG_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 && su nobody -s /bin/sh -c " export HOME=${tempDir} && cd ${tempDir} && curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz && PKGOSSCHECKSUM=\"cd3333f4dfa4a873f6df73dfe24e047adc092d779aefb46577b6307ff0d0125543508694a80158b2bfc891167ad763b0d08287829df9924d4c22f50d063e76c0 *${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 [2024-07-25 12:33:15 UTC] COPY ./nginx/nginx.conf /etc/nginx/nginx.conf # buildkit [2024-07-25 12:33:15 UTC] RUN /bin/sh -c rm -rf /usr/share/nginx/html/* # buildkit [2024-07-25 12:33:47 UTC] COPY /app/dist /usr/share/nginx/html # buildkit [2024-07-25 12:33:47 UTC] EXPOSE map[80/tcp:{}] [2024-07-25 12:33:47 UTC] COPY ./entrypoint.sh /entrypoint.sh # buildkit [2024-07-25 12:33:47 UTC] RUN /bin/sh -c chmod +x /entrypoint.sh # buildkit [2024-07-25 12:33:47 UTC] ENTRYPOINT ["/entrypoint.sh"]