镜像构建历史
# 2026-05-29 15:51:35 0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
# 2026-05-29 15:51:35 1.32KB 执行命令并创建新的镜像层
RUN |3 VERSION=v1.0.8 GIT_COMMIT=4d17762e8d33b1c713b1207acf505f7e41399949 BUILD_TIME=26625158401 /bin/sh -c chmod +x /docker-entrypoint.sh # buildkit
# 2026-05-29 15:51:35 1.32KB 复制新文件或目录到容器中
COPY console/frontend/docker-entrypoint.sh /docker-entrypoint.sh # buildkit
# 2026-05-29 15:51:34 106.39MB 复制新文件或目录到容器中
COPY /app/dist /var/www # buildkit
# 2026-05-29 15:50:00 0.00B 声明容器运行时监听的端口
EXPOSE [1881/tcp]
# 2026-05-29 15:50:00 1.05KB 执行命令并创建新的镜像层
RUN |3 VERSION=v1.0.8 GIT_COMMIT=4d17762e8d33b1c713b1207acf505f7e41399949 BUILD_TIME=26625158401 /bin/sh -c echo "user nginx; worker_processes 8; error_log /var/log/nginx/error.log error; pid /var/run/nginx.pid; events { worker_connections 65535; } http { include /etc/nginx/mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; gzip on; gzip_http_version 1.0; gzip_disable \"MSIE [1-6].\"; gzip_types text/plain application/x-javascript text/css application/javascript text/javascript; server { listen ${NGINX_PORT}; index index.html; root /var/www; access_log off; location = /runtime-config.js { expires -1; add_header Cache-Control \"no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0\"; add_header Pragma \"no-cache\"; } location / { try_files \$uri \$uri/ /index.html; expires -1; } location ~ .*\.(gif|jpg|jpeg|png|PNG|bmp|swf|asp|cfm|xml|py|pl|lasso|cfc|afp|txt|zip|log|ico|csv|json|xls|pdf|mp3|mp4|apk)$ { expires 1y; access_log off; } location ~ .*\.(js|css)?$ { expires 1y; access_log off; } } }" > /etc/nginx/nginx.conf # buildkit
# 2026-05-29 15:50:00 0.00B 设置环境变量 NGINX_PORT
ENV NGINX_PORT=1881
# 2026-05-29 15:50:00 0.00B 添加元数据标签
LABEL org.opencontainers.image.version=v1.0.8 org.opencontainers.image.revision=4d17762e8d33b1c713b1207acf505f7e41399949 org.opencontainers.image.created=26625158401
# 2026-05-29 15:50:00 0.00B 定义构建参数
ARG BUILD_TIME=26625158401
# 2026-05-29 15:50:00 0.00B 定义构建参数
ARG GIT_COMMIT=4d17762e8d33b1c713b1207acf505f7e41399949
# 2026-05-29 15:50:00 0.00B 定义构建参数
ARG VERSION=v1.0.8
# 2019-05-11 08:35:56 0.00B
/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]
# 2019-05-11 08:35:56 0.00B
/bin/sh -c #(nop) STOPSIGNAL SIGTERM
# 2019-05-11 08:35:55 0.00B
/bin/sh -c #(nop) EXPOSE 80
# 2019-05-11 08:35:55 1.09KB
/bin/sh -c #(nop) COPY file:ebf4f0eb33621cc016414b2aa2bad4d497b7c5d59ee6bc8f0592625c2134e7ca in /etc/nginx/conf.d/default.conf
# 2019-05-11 08:35:55 643.00B
/bin/sh -c #(nop) COPY file:4c82b9f10b84c5676e254bca55dc60405505b9f8036491860c7bd61ea3eb9047 in /etc/nginx/nginx.conf
# 2019-05-11 08:35:55 10.55MB
/bin/sh -c GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 && CONFIG=" --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-threads --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-stream_realip_module --with-stream_geoip_module=dynamic --with-http_slice_module --with-mail --with-mail_ssl_module --with-compat --with-file-aio --with-http_v2_module " && addgroup -S nginx && adduser -D -S -h /var/cache/nginx -s /sbin/nologin -G nginx nginx && apk add --no-cache --virtual .build-deps gcc libc-dev make openssl-dev pcre-dev zlib-dev linux-headers curl gnupg1 libxslt-dev gd-dev geoip-dev && curl -fSL https://nginx.org/download/nginx-$NGINX_VERSION.tar.gz -o nginx.tar.gz && curl -fSL https://nginx.org/download/nginx-$NGINX_VERSION.tar.gz.asc -o nginx.tar.gz.asc && export GNUPGHOME="$(mktemp -d)" && found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $GPG_KEYS from $server"; gpg --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$GPG_KEYS" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $GPG_KEYS" && exit 1; gpg --batch --verify nginx.tar.gz.asc nginx.tar.gz && rm -rf "$GNUPGHOME" nginx.tar.gz.asc && mkdir -p /usr/src && tar -zxC /usr/src -f nginx.tar.gz && rm nginx.tar.gz && cd /usr/src/nginx-$NGINX_VERSION && ./configure $CONFIG --with-debug && make -j$(getconf _NPROCESSORS_ONLN) && mv objs/nginx objs/nginx-debug && mv objs/ngx_http_xslt_filter_module.so objs/ngx_http_xslt_filter_module-debug.so && mv objs/ngx_http_image_filter_module.so objs/ngx_http_image_filter_module-debug.so && mv objs/ngx_http_geoip_module.so objs/ngx_http_geoip_module-debug.so && mv objs/ngx_stream_geoip_module.so objs/ngx_stream_geoip_module-debug.so && ./configure $CONFIG && make -j$(getconf _NPROCESSORS_ONLN) && make install && rm -rf /etc/nginx/html/ && mkdir /etc/nginx/conf.d/ && mkdir -p /usr/share/nginx/html/ && install -m644 html/index.html /usr/share/nginx/html/ && install -m644 html/50x.html /usr/share/nginx/html/ && install -m755 objs/nginx-debug /usr/sbin/nginx-debug && install -m755 objs/ngx_http_xslt_filter_module-debug.so /usr/lib/nginx/modules/ngx_http_xslt_filter_module-debug.so && install -m755 objs/ngx_http_image_filter_module-debug.so /usr/lib/nginx/modules/ngx_http_image_filter_module-debug.so && install -m755 objs/ngx_http_geoip_module-debug.so /usr/lib/nginx/modules/ngx_http_geoip_module-debug.so && install -m755 objs/ngx_stream_geoip_module-debug.so /usr/lib/nginx/modules/ngx_stream_geoip_module-debug.so && ln -s ../../usr/lib/nginx/modules /etc/nginx/modules && strip /usr/sbin/nginx* && strip /usr/lib/nginx/modules/*.so && rm -rf /usr/src/nginx-$NGINX_VERSION && apk add --no-cache --virtual .gettext gettext && mv /usr/bin/envsubst /tmp/ && runDeps="$( scanelf --needed --nobanner --format '%n#p' /usr/sbin/nginx /usr/lib/nginx/modules/*.so /tmp/envsubst | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .nginx-rundeps $runDeps && apk del .build-deps && apk del .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
# 2019-05-11 08:34:32 0.00B
/bin/sh -c #(nop) ENV NGINX_VERSION=1.15.12
# 2019-05-11 08:34:31 0.00B
/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
# 2019-05-11 08:07:03 0.00B
/bin/sh -c #(nop) CMD ["/bin/sh"]
# 2019-05-11 08:07:03 5.53MB
/bin/sh -c #(nop) ADD file:a86aea1f3a7d68f6ae03397b99ea77f2e9ee901c5c59e59f76f93adbb4035913 in /
镜像信息
{
"Id": "sha256:d4c7d28c5a8205291d4fb1454d8b5595e119e8e99262bcb7b92895bf37431206",
"RepoTags": [
"ghcr.io/iflytek/astron-agent/console-frontend:v1.0.8",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/iflytek/astron-agent/console-frontend:v1.0.8"
],
"RepoDigests": [
"ghcr.io/iflytek/astron-agent/console-frontend@sha256:7eebddad24a448feb0772164584b9fd1db5a654e924f8c36dd5b2a603ef8dc2f",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/iflytek/astron-agent/console-frontend@sha256:a774498a7895fc2770152782d7a90ddbb362a788a6027432ade1d616e41307b4"
],
"Parent": "",
"Comment": "buildkit.dockerfile.v0",
"Created": "2026-05-29T07:51:35.184402563Z",
"Container": "",
"ContainerConfig": null,
"DockerVersion": "",
"Author": "",
"Config": {
"Hostname": "",
"Domainname": "",
"User": "",
"AttachStdin": false,
"AttachStdout": false,
"AttachStderr": false,
"ExposedPorts": {
"1881/tcp": {},
"80/tcp": {}
},
"Tty": false,
"OpenStdin": false,
"StdinOnce": false,
"Env": [
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"NGINX_VERSION=1.15.12",
"NGINX_PORT=1881"
],
"Cmd": null,
"ArgsEscaped": true,
"Image": "",
"Volumes": null,
"WorkingDir": "",
"Entrypoint": [
"/docker-entrypoint.sh"
],
"OnBuild": null,
"Labels": {
"maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e",
"org.opencontainers.image.created": "2026-05-29T07:49:56.910Z",
"org.opencontainers.image.description": "Enterprise-grade, commercial-friendly agentic workflow platform for building next-generation SuperAgents.",
"org.opencontainers.image.licenses": "Apache-2.0",
"org.opencontainers.image.revision": "4d17762e8d33b1c713b1207acf505f7e41399949",
"org.opencontainers.image.source": "https://github.com/iflytek/astron-agent",
"org.opencontainers.image.title": "astron-agent",
"org.opencontainers.image.url": "https://github.com/iflytek/astron-agent",
"org.opencontainers.image.version": "1.0.8"
},
"StopSignal": "SIGTERM"
},
"Architecture": "amd64",
"Os": "linux",
"Size": 122482873,
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/7a20b569e8dc6de0d321fa8763db0b35c0928fb5d357ecdc91f28e3426ce2909/diff:/var/lib/docker/overlay2/7beaae9476f292c37246f456b53ed419542e1c29d9420d2f9d1bc2486b0fbe05/diff:/var/lib/docker/overlay2/1c987750c26789c4ee12e4e52b5c93e10259c0aefa39abb03a730ae8dab3536a/diff:/var/lib/docker/overlay2/63247b5195c37ebc5b7a363cf1a71b1706985ce8df3d1ff16aa62b842adcffc5/diff:/var/lib/docker/overlay2/ff268c6be63b765e05b7401550e4bf1d8eaa2add68ff65c2f4a26469df2f798f/diff:/var/lib/docker/overlay2/efc24fa98bb8bad9a7e2883d7e983c549de8dbe57c8311f235734a8f9de3fb05/diff:/var/lib/docker/overlay2/32a192cfb3f7ad45c5953a6db19b628755c77a5d4a393678a4233337a0130582/diff",
"MergedDir": "/var/lib/docker/overlay2/5736621164f34acb65eacdbf66869da3bda20b3ce44286e0e3af569050334282/merged",
"UpperDir": "/var/lib/docker/overlay2/5736621164f34acb65eacdbf66869da3bda20b3ce44286e0e3af569050334282/diff",
"WorkDir": "/var/lib/docker/overlay2/5736621164f34acb65eacdbf66869da3bda20b3ce44286e0e3af569050334282/work"
},
"Name": "overlay2"
},
"RootFS": {
"Type": "layers",
"Layers": [
"sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81",
"sha256:a61993362bafa7ae596d94fd1506a693d10b1b85dda516952b77cb55b69d2861",
"sha256:bf381a67095604adef183f8bae81953bcd3e0b121bdd97715b16606e8f4b4a84",
"sha256:a521e1bbddf56ff1b5eb050faae85b4e1277c8f2defcc9083979772ff5ec555b",
"sha256:58320c29b50e033c5e262e4486d058f7af01cb400c361e883efbca11933d12dc",
"sha256:c1cc7ab733749e8d249cb8457d76f2527ab08c17f68d9b60cffe97895c29cc29",
"sha256:113692c209f042251362451ab6d31408353db70652b7d4e3dbb65dbfb60d9e50",
"sha256:eae75d48e7d1fcafa022823051ec9d4f26d587159ec78107920dabc886b86fde"
]
},
"Metadata": {
"LastTagTime": "2026-06-01T14:48:23.639365596+08:00"
}
}