gpt4 book ai didi

docker - 多个镜像,一个 Dockerfile

转载 作者:IT老高 更新时间:2023-10-28 21:22:24 31 4
gpt4 key购买 nike

如何在一个 Dockerfile 中创建两个镜像,它们只复制不同的文件。

这不应该产生两个图像 img1img2,而是产生两个未命名的图像 d00a6fc336b3a88fbba7eede

Dockerfile:

FROM alpine as img1
COPY file1.txt .

FROM alpine as img2
COPY file2.txt .

这是 docker build 的结果。

REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
<none> <none> d00a6fc336b3 4 seconds ago 4.15 MB
<none> <none> a88fbba7eede 5 seconds ago 4.15 MB
alpine latest 3fd9065eaf02 3 months ago 4.15 MB

最佳答案

您可以使用 docker-compose文件使用 target选项:

version: '3.4'
services:
img1:
build:
context: .
target: img1
img2:
build:
context: .
target: img2

使用带有以下内容的 Dockerfile:

FROM alpine as img1
COPY file1.txt .

FROM alpine as img2
COPY file2.txt .

关于docker - 多个镜像,一个 Dockerfile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49754286/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com