目錄
-
一、減少鏡像層數(shù)
-
1.指令合并
-
2.多階段構(gòu)建
-
3.啟用squash特性
-
二、縮減容量
-
1. 選擇小的基礎(chǔ)鏡像
-
2.上下文管理
-
3.及時清理下載
精簡鏡像我們可以從兩個方面切入:
減少鏡像層數(shù)
縮減容量
一、減少鏡像層數(shù)
1.指令合并
Dockerfile 中的每條指令都將創(chuàng)建一個層,不過查看官方文檔中最佳實(shí)踐有這樣一句話:
In older versions of Docker, it was important that you minimized the number of layers in your images to ensure they were performant. The following features were added to reduce this limitation:
-
Only the instructions RUN, COPY, ADD create layers. Other instructions create temporary intermediate images, and do not increase the size of the build.
...
參考地址:Minimize the number of layers
意味著只有 RUN, COPY, ADD 三個指令會創(chuàng)建層,其他指令會創(chuàng)建一個中間鏡像,并且不會影響鏡像大小。這樣我們說的指令合并也就是以這三個指令為主。
我們以如下Dockerfile為例
FROM debian:stable
WORKDIR /var/www
LABEL version=“v1”
RUN apt-get update
RUN apt-get -y --no-install-recommends install curl
RUN apt-get purge -y curl
RUN apt-get autoremove -y
RUN apt-get clean
RUN rm -rf /var/lib/apt/lists/*
構(gòu)建鏡像
docker build -t curl:v1 .
通過history查看構(gòu)建歷史
# docker history curl:v1
IMAGE CREATED CREATED BY SIZE COMMENT
29b721c09b67 18 seconds ago /bin/sh -c rm -rf /var/lib/apt/lists/* 0B
aa28ae151e59 20 seconds ago /bin/sh -c apt-get clean 0B
4f733781f557 22 seconds ago /bin/sh -c apt-get autoremove -y 989kB
f66887372121 29 seconds ago /bin/sh -c apt-get purge -y curl 987kB
d458ee0de463 34 seconds ago /bin/sh -c apt-get -y --no-install-recommend… 4.46MB
43fdcf68018c 44 seconds ago /bin/sh -c apt-get update 17.6MB
65631e8bb010 53 seconds ago /bin/sh -c #(nop) LABEL version=“v1” 0B
7ef7c53b019c 53 seconds ago /bin/sh -c #(nop) WORKDIR /var/www 0B
8bfa93572e55 13 days ago /bin/sh -c #(nop) CMD ["bash"] 0B
<missing> 13 days ago /bin/sh -c #(nop) ADD file:d78d93eff67b18592… 124MB
鏡像大小
[root@localhost dockerfiles]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
curl v1 29b721c09b67 10 minutes ago 148MB
我們將RUN指令通過類shell操作&&合并后
RUN apt-get update &&
apt-get -y --no-install-recommends install curl &&
apt-get purge -y curl &&
apt-get autoremove -y &&
apt-get clean &&
rm -rf /var/lib/apt/lists/*
查看構(gòu)建歷史與鏡像大小
# docker history curl:v2
IMAGE CREATED CREATED BY SIZE COMMENT
928e12c2f57e About a minute ago /bin/sh -c apt-get update && apt-get -y … 989kB
5a32372025fb About a minute ago /bin/sh -c #(nop) LABEL version=“v2” 0B
7ef7c53b019c 30 minutes ago /bin/sh -c #(nop) WORKDIR /var/www 0B
8bfa93572e55 13 days ago /bin/sh -c #(nop) CMD ["bash"] 0B
<missing> 13 days ago /bin/sh -c #(nop) ADD file:d78d93eff67b18592… 124MB
# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
curl v2 928e12c2f57e 3 minutes ago 125MB
可見只是一個簡單的curl應(yīng)用在通過指令合并的方式安裝已經(jīng)獲得了約20MB的容量釋放。同時使你的dockerfile文件更為易讀和簡約。
2.多階段構(gòu)建
在Docker17.05 中引入了多階段構(gòu)建,通過多階段構(gòu)建可以大大降低構(gòu)建復(fù)雜度,同時使縮小鏡像尺寸更為簡單。我們來看多階段構(gòu)建的Dockerfile
#階段1
FROM golang:1.16
WORKDIR /go/src
COPY app.go ./
RUN go build app.go -o myapp
#階段2
FROM scratch
WORKDIR /server
COPY --from=0 /go/src/myapp ./
CMD ["./myapp"]
構(gòu)建鏡像
# docker build --no-cache -t server_app:v2 .
查看構(gòu)建好的鏡像
# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
server_app v2 20225cb1ea6b 12 seconds ago 1.94MB
以上用例來自上篇文章《Dockerfile 多階段構(gòu)建實(shí)踐》關(guān)于鏡像多階段構(gòu)建具體內(nèi)容可以前往查看,這里不做過多贅述。
3.啟用squash特性
通過啟用squash特性(實(shí)驗(yàn)性功能)docker build --squash -t curl:v3 . 可以構(gòu)建的鏡像壓縮為一層。但是為了充分發(fā)揮容器鏡像層共享的優(yōu)越設(shè)計(jì),這種方法不被推薦。
二、縮減容量
1. 選擇小的基礎(chǔ)鏡像
每個linux發(fā)行版鏡像大小相差很多,甚至相同發(fā)行版鏡像也存在差異。我們以debian為例:
穩(wěn)定版和瘦身版相差約40MB
# docker images
debian stable-slim 2aa48a485e3a 13 days ago 80.4MB
debian stable 8bfa93572e55 13 days ago 124MB
我們將Dockerfile中基礎(chǔ)鏡像改為瘦身版debian:stable-slim
構(gòu)建后的鏡像尺寸更小
# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
curl v4 1aab5c9bf8b3 17 seconds ago 81.4MB
當(dāng)前映像基于 Debian,并包含許多二進(jìn)制文件。Docker 容器應(yīng)該包含一個進(jìn)程,并包含運(yùn)行它所需的最低限度。我們其實(shí)不需要整個操作系統(tǒng)。
我們可以使用基于 Alpine 的鏡像 替換Debian 基礎(chǔ)鏡像。
FROM alpine
WORKDIR /var/www
LABEL version=“v5”
RUN echo -e 'https://mirrors.aliyun.com/alpine/v3.6/main/
https://mirrors.aliyun.com/alpine/v3.6/community/' > /etc/apk/repositories &&
apk update &&
apk upgrade &&
apk add --no-cache curl
查看鏡像大小
# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
curl v5 7f735bb213be 11 seconds ago 10.1MB
此時我們的鏡像來到了10MB。使用alpine鏡像包管理工具是apk,一些軟件包名可能不一樣。最大的區(qū)別
2.上下文管理
我們經(jīng)常會用到的COPY指令
COPY會把整個 構(gòu)建上下文復(fù)制到鏡像中,并生產(chǎn)新的緩存層。為了不必要的文件如日志、緩存文件、Git 歷史記錄被加載到構(gòu)建上下文,我們最好添加.dockerignore用于忽略非必須文件。這也是精簡鏡像關(guān)鍵一步,同時能更好的保證我們構(gòu)建的鏡像安全性。
3.及時清理下載
我們有如下Dockerfile
..
WORKDIR /tmp
RUN curl -LO https://docker.com/download.zip && tar -xf download.zip -C /var/www
RUN rm -f download.zip
...
我們雖然使用了rm刪除download.zip包,由于鏡像分層的問題,download.zip是在新的一層被刪除,上一層仍然存在。
我們要在一層中及時清理下載
RUN curl -LO https://docker.com/download.zip && tar -xf
download.zip -C /var/www && rm -f download.zip
另外在安裝軟件時應(yīng)及時使用包管理工具清除你下載的軟件依賴及緩存,比如在我們dockerfile中使用apt包管理工具做清理。
關(guān)于精簡鏡像的相關(guān)操作介紹到這里,更多相關(guān)docker容器 精簡鏡像內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!