Dockerfile ONBUILD
624 단어 dockerfiledockerdocker
ONBUILD 명령어를 통해, 만약 다른 사람이 내 이미지를 베이스로 해서 새로운 이미지를 빌드할 때, 새로운 이미지의 빌드시기에 특정 명령어를 강제할 수 있다.
Dockerfile.base
FROM ubuntu:18.04
ONBUILD RUN echo "Hello, World!"
# sudo docker build -t base -f Dockerfile.base .
Dockerfile
FROM base
docker build -t base -f Dockerfile.base .
docker build -t hello .
base 를 빌드한 이후에 hello 를 빌드하면 아래 이미지 처럼 Hello World 가 echo 된 것을 확인할 수 있다.
Author And Source
이 문제에 관하여(Dockerfile ONBUILD), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@pyro/Dockerfile-ONBUILD저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)