
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这段话即可:
请先阅读并遵守:https://xuanyuan.cloud/agents.md
未读文档前不要生成 pull 命令或排错方案。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
https://www.activestate.com/solutions/container-security/?utm_source=dockerhub&utm_medium=thirdparty&utm_campaign=dockerhub&utm_content=python provide a secure base for fully customizable, low-to-no-vulnerability container images.
To have ActiveState customize an image using our catalog of over 40 million secure components, please submit your https://www.activestate.com/custom-container-request?utm_source=dockerhub&utm_medium=thirdparty&utm_campaign=dockerhub&utm_content=python. Further hardening to meet compliance standards (e.g., FedRAMP, SOC 2, etc.) is available by request - simply https://www.activestate.com/company/contact-us/?utm_source=dockerhub&utm_medium=thirdparty&utm_campaign=dockerhub&utm_content=python.
For additional information and support, please visit the https://docs.activestate.com/containers?utm_source=dockerhub&utm_medium=thirdparty&utm_campaign=dockerhub&utm_content=python or https://www.activestate.com/company/contact-us/?utm_source=dockerhub&utm_medium=thirdparty&utm_campaign=dockerhub&utm_content=python.
This is ActiveState’s minimal Python and Python Development container, bundling a secure, up-to-date Python toolchain for building and running Python applications. It stays slim while including the standard library and build tools, giving you a reliable foundation for production-ready Python images.
This development container is provided “as is” solely for internal testing, evaluation, and development purposes. It is not designed, intended, or warranted for use in production environments. Use of this container in any production, commercial, or customer-facing context is at your own risk. The provider makes no warranties, express or implied, regarding the container’s performance, security, or fitness for a particular purpose.
See https://cdn.activestate.com/wp-content/uploads/2025/06/ActiveState-SCA-Tools-Restricted-License-1.pdf
shelldocker pull activestate/python:latest
shelldocker run --rm activestate/python -V
The following is a minimal example of a Dockerfile that uses a multistage build to run an app.py script after installing dependencies listed in a requirements.txt file.
shellFROM python:latest AS dev WORKDIR /app RUN python -m venv venv ENV PATH="/app/venv/bin:$PATH" COPY requirements.txt requirements.txt RUN pip install -r requirements.txt FROM activestate/python:latest WORKDIR /app COPY app.py app.py COPY --from=dev /app/venv /app/venv ENV PATH="/app/venv/bin:$PATH" ENTRYPOINT ["python", "app.py"]
以下是 activestate/python 相关的常用 Docker 镜像,适用于 Web 开发、数据科学、机器学习 等不同场景:
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务