redhat7 docker 图片:如何安装 python3
redhat7 docker image: how to install python3
我需要在 RH7 docker 映像中安装 python3。不幸的是,我是 RedHat 的新手,安装 python 版本似乎相当复杂。我可以得到一些帮助或工作的 Docker 文件吗?
您可以相应地更新您的 Dockerfile,以使用具有所需 python 版本的基础映像:
已安装 python3 的 Red Hat Enterprise Linux 服务器版本 7.9 (Maipo) 映像示例:
$ docker run -itu 0 registry.access.redhat.com/ubi7/python-36 /bin/bash
Unable to find image 'registry.access.redhat.com/ubi7/python-36:latest' locally
latest: Pulling from ubi7/python-36
1323a241cc06: Pull complete 2bd25ca12457: Pull complete 5d011ac93e74: Pull complete fa92b53b7e2a: Pull complete 06e86f96ac44: Pull complete Digest: sha256:e7658aeaaf6c5897b602ad5a69f8c48761b494d47f27a2251036f363c4a0450f
Status: Downloaded newer image for registry.access.redhat.com/ubi7/python-36:latest
(app-root)
(app-root) python --version
Python 3.6.9
我需要在 RH7 docker 映像中安装 python3。不幸的是,我是 RedHat 的新手,安装 python 版本似乎相当复杂。我可以得到一些帮助或工作的 Docker 文件吗?
您可以相应地更新您的 Dockerfile,以使用具有所需 python 版本的基础映像:
$ docker run -itu 0 registry.access.redhat.com/ubi7/python-36 /bin/bash
Unable to find image 'registry.access.redhat.com/ubi7/python-36:latest' locally
latest: Pulling from ubi7/python-36
1323a241cc06: Pull complete 2bd25ca12457: Pull complete 5d011ac93e74: Pull complete fa92b53b7e2a: Pull complete 06e86f96ac44: Pull complete Digest: sha256:e7658aeaaf6c5897b602ad5a69f8c48761b494d47f27a2251036f363c4a0450f
Status: Downloaded newer image for registry.access.redhat.com/ubi7/python-36:latest
(app-root)
(app-root) python --version
Python 3.6.9