在 GHA 的 Dockerfile 中使用 ghcr
Use ghcr in Dockerfile in GHA
我想使用 ghcr 作为缓存来存储 docker 图像,其中的部分在我的项目中几乎没有改变(Ubuntu、miniconda 和一堆 Python 包)和然后在 Dockerfile 中使用这个图像,它将项目的卷和代码添加到它。 Dockerfile 是 运行 的 Github 个操作。如何在 Dockerfile 的 From 语句中引用 ghcr 存储的图像?
How could I reference to ghcr stored image in From statement of Dockerfile?
图像引用前面有注册表,如果不包含,将默认为 Docker Hub。因此,对于像 ghcr 这样的注册表,您需要:
FROM ghcr.io/path/to/image:tag
我想使用 ghcr 作为缓存来存储 docker 图像,其中的部分在我的项目中几乎没有改变(Ubuntu、miniconda 和一堆 Python 包)和然后在 Dockerfile 中使用这个图像,它将项目的卷和代码添加到它。 Dockerfile 是 运行 的 Github 个操作。如何在 Dockerfile 的 From 语句中引用 ghcr 存储的图像?
How could I reference to ghcr stored image in From statement of Dockerfile?
图像引用前面有注册表,如果不包含,将默认为 Docker Hub。因此,对于像 ghcr 这样的注册表,您需要:
FROM ghcr.io/path/to/image:tag