我知道新的multi-stage build功能,它可以很好地与Docker Compose配合使用.但是,让我说我坚持使用构建器模式(不要问)…有没有办法让docker-compose使用构建器模式所需的构建脚本?
Dockerfile.build
FROM golang:1.7.3
WORKDIR /go/src/github.com/alexellis/href-counter/
RUN go get -d -v golang.org/x/net/html
COPY app.go .
RUN go get -d -v golang.org/x/net/html \
&& CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
Dockerfile
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /root/
COPY app .
CMD ["./app"]
build.sh
#!/bin/sh
docker build -t alexellis2/href-counter:build . -f Dockerfile.build
docker create --name extract alexellis2/href-counter:build
docker cp extract:/go/src/github.com/alexellis/href-counter/app ./app
docker rm -f extract
docker build --no-cache -t alexellis2/href-counter:latest .
rm ./app
我可以构建一个像这样的Docker Compose文件,但我不知道如何从临时Docker容器中cp文件.
泊坞窗,compose.yml
version: '3'
services:
app:
build: .
depends_on:
- app-build
app-build:
build:
context: .
dockerfile: Dockerfile.build
我可以构建临时Docker镜像/容器,并使用上面的build.sh脚本的第一部分运行cp,然后使用精简的compose文件,但是,我可能只是坚持使用脚本.
最佳答案
一种方法可以使用2个docker-compose调用,并结合目录映射:
原文链接:https://www.f2er.com/docker/435781.htmlversion: '3'
services:
app:
build: .
app-build:
build:
context: .
dockerfile: Dockerfile.build
volumes:
- ./build/:/go/src/github.com/alexellis/href-counter/
然后:
#This will produce local ./build/app artifact
docker-compose build app-build
#Having the prevIoUs artifact,will use it:
docker-compose build app
只需将其更改为Dockerfile:
COPY build/app .
但是,我建议您使用Multi Stage Build方法.比这简单得多.