-
Multi Stagedocker 2024. 4. 17. 18:40
참고: https://nesoy.github.io/articles/2020-11/Docker-multi-stage-build
예제
FROM golang:1.7.3 AS builder WORKDIR /go/src/github.com/alexellis/href-counter/ RUN go get -d -v golang.org/x/net/html COPY app.go . RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app . FROM alpine:latest RUN apk --no-cache add ca-certificates WORKDIR /root/ COPY --from=builder /go/src/github.com/alexellis/href-counter/app . CMD ["./app"]
'docker' 카테고리의 다른 글
container 간 통신 (0) 2024.03.28 docker 로 jupyter lab 설치하기 (0) 2024.01.04 docker 로 elasticsearch 7 설치 (0) 2023.11.21 docker error "TLS handshake timeout" (0) 2022.06.24 docker 로 kafka 설치 (0) 2021.12.22