如何diy一個image?
1
mkdir hello-world
2
vim hello.c
3,編寫程式碼並儲存
#include<stdio.h>
int main(){
printf("hello docker\n");
}
4,安裝兩個工具
yum install -y gcc glibc-static
5,輸入一個可執行檔案
gcc -static hello.c -o hello
這是一個可執行檔案,./hello
會輸出 hello docker
6,建立一個Dockerfile檔案
FROM scratch
ADD hello /
CMD ["/hello"]
7,建立
docker build -t fangshuai/hello-world .
8,測試
docker run fangshuai/hello-world
結果如下:
本作品採用《CC 協議》,轉載必須註明作者和本文連結