镜像构建历史
# 2026-09-07 14:30:39 0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
# 2026-09-07 14:30:39 1.32KB 执行命令并创建新的镜像层
RUN |3 VERSION=v1.1.2 GIT_COMMIT=189600dd691e8562bd0b9f7112727b107b8a2e10 BUILD_TIME=34090981038 /bin/sh -c chmod +x /docker-entrypoint.sh # buildkit
# 2026-09-07 14:30:38 1.32KB 复制新文件或目录到容器中
COPY console/frontend/docker-entrypoint.sh /docker-entrypoint.sh # buildkit
# 2026-09-07 14:30:38 106.39MB 复制新文件或目录到容器中
COPY /app/dist /var/www # buildkit
# 2026-09-07 14:28:57 0.00B 声明容器运行时监听的端口
EXPOSE [1881/tcp]
# 2026-09-07 14:28:57 1.05KB 执行命令并创建新的镜像层
RUN |3 VERSION=v1.1.2 GIT_COMMIT=189600dd691e8562bd0b9f7112727b107b8a2e10 BUILD_TIME=34090981038 /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-09-07 14:28:57 0.00B 设置环境变量 NGINX_PORT
ENV NGINX_PORT=1881
# 2026-09-07 14:28:57 0.00B 添加元数据标签
LABEL org.opencontainers.image.version=v1.1.2 org.opencontainers.image.revision=189600dd691e8562bd0b9f7112727b107b8a2e10 org.opencontainers.image.created=34090981038
# 2026-09-07 14:28:57 0.00B 定义构建参数
ARG BUILD_TIME=34090981038
# 2026-09-07 14:28:57 0.00B 定义构建参数
ARG GIT_COMMIT=189600dd691e8562bd0b9f7112727b107b8a2e10
# 2026-09-07 14:28:57 0.00B 定义构建参数
ARG VERSION=v1.1.2
# 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:ec2679cd46f00bc335394154732784b2c4401f64611a490a9bd64ca3e2c7c5b6",
"RepoTags": [
"ghcr.io/iflytek/astron-agent/console-frontend:latest",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/iflytek/astron-agent/console-frontend:latest"
],
"RepoDigests": [
"ghcr.io/iflytek/astron-agent/console-frontend@sha256:711a4cf331ac57ffd7aa874e3ee180ab42c458d0cfe3c734785ef847d6998d6b",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/iflytek/astron-agent/console-frontend@sha256:36a39d73ed6828d08d4ab7069185e049899dd1031e70515bd4d05a04e71fc573"
],
"Parent": "",
"Comment": "buildkit.dockerfile.v0",
"Created": "2026-09-07T06:30:39.103090466Z",
"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-09-07T06:28:55.494Z",
"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": "189600dd691e8562bd0b9f7112727b107b8a2e10",
"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.1.2"
},
"StopSignal": "SIGTERM"
},
"Architecture": "amd64",
"Os": "linux",
"Size": 122479368,
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/c59e895a6441c2be19242323efb3467f9c97a2604661a41b455da60345afaa59/diff:/var/lib/docker/overlay2/91ab45eb34a68dfa5b2387569b71f37eaa16f2badf1597143a5f041d60b2dc5d/diff:/var/lib/docker/overlay2/44230e3d0d6f642bbec4e0b762de5c86887d1d454f2b74e1e3268ec49707c478/diff:/var/lib/docker/overlay2/9696132baf893a3038966f4e1b44c96f4a8a7dc3ce5c99c5972d95acb8e65999/diff:/var/lib/docker/overlay2/af56666da579e9c1a74e7f524a355620dab48f606b51cb972f26a9b28ad9617f/diff:/var/lib/docker/overlay2/914b18408aaed9a49d9aee5d3125e8c2c3c852db9e3b1f692713700906e943a2/diff:/var/lib/docker/overlay2/e77e08183b4856aaddf3942acbd2fbb59df822758f123ac519ee5ac0509813e2/diff",
"MergedDir": "/var/lib/docker/overlay2/39416d78ecde0196c59bdacdf501d58dbf48a5d3cf19cbe091b805fe9cd8450e/merged",
"UpperDir": "/var/lib/docker/overlay2/39416d78ecde0196c59bdacdf501d58dbf48a5d3cf19cbe091b805fe9cd8450e/diff",
"WorkDir": "/var/lib/docker/overlay2/39416d78ecde0196c59bdacdf501d58dbf48a5d3cf19cbe091b805fe9cd8450e/work"
},
"Name": "overlay2"
},
"RootFS": {
"Type": "layers",
"Layers": [
"sha256:f1b5933fe4b5f49bbe8258745cf396afe07e625bdab3168e364daf7c956b6b81",
"sha256:a61993362bafa7ae596d94fd1506a693d10b1b85dda516952b77cb55b69d2861",
"sha256:bf381a67095604adef183f8bae81953bcd3e0b121bdd97715b16606e8f4b4a84",
"sha256:a521e1bbddf56ff1b5eb050faae85b4e1277c8f2defcc9083979772ff5ec555b",
"sha256:01a2e655e0f1f5d925bc3f42a512ea20929bc515ceb62e5df8aa87a6fa9793b6",
"sha256:e69e763f9b88598f07faaa7747a73309a7f34fc8ba43143bc23bdf100d41dd9c",
"sha256:dac3e1650d33266b0af723d588f1b3e54885e922ce90f2fbe38954596d33f9b8",
"sha256:27c29284241b8e5eace294b894920c0a08ecc466dbba55f2a522589b3e05cf57"
]
},
"Metadata": {
"LastTagTime": "2026-09-09T14:34:59.331724344+08:00"
}
}