Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Qianfeng Linux Cloud Computing tutorial complete Video Collection: Dockerfile detailed explanation (2)

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

In this chapter, I will explain to you: the second part of Dockerfile:

Dockerfile

FROM instruction

The main function is to specify an image as the base image for building a custom image, and modify and customize it based on it.

This instruction is a necessary instruction in Dockerfile, and it must also be the first instruction.

There are many high-quality official images on Docker Store, which can be directly used as our basic images.

As a service class, such as Nginx Mongo, etc.

For development, such as Python golang

Operating system classes, such as Centos ubuntu

In addition to some existing images, Docker also has a special mirror scratch

This image is virtual and represents a blank image.

FORM scratch

This means that it will not be mirrored on any basis.

Executable binaries can be copied to the image for direct execution, and the container itself shares the Linux kernel with the host.

Many applications developed in the Go language use this way to create images, which is one of the reasons why some people think that Go is a particularly suitable language for container microservice architecture.

If you leave a message at the bottom of the article, you can listen to the course and receive all the video tutorials such as Qianfeng HTML5, UI interaction design, PHP, Java+ cloud data, big data development, VR/AR/Unity game development, Python artificial intelligence, Linux cloud computing, full stack software testing, network security and so on.

Make your own Hello world

On any Linux machine, install gcc to see if it is installed

[root@localhost hello_qf] # rpm-qa gcc glibc-static

Glibc-static-2.17-222.el7.x86_64

Gcc-4.8.5-11.el7.x86_64

If not, just install it.

[root@localhost hello_qf] # yum install gcc glibc-static

Edit C source code file

[root@localhost docker] # cat hello.c

# include

Int main ()

{

Printf ("Hello, Yangge!\ n")

Return 0

}

Compile source code files into executable binaries

[root@localhost hello_qf] # gcc-- static hello.c-o hello

After compiling, test it.

[root@localhost hello_qf] # ls

Hello hello.c

# hello is the binary file we compiled

# hello.c is the source file of C

[root@localhost hello_qf] #. / hello

Hello Yangge # output result indicates that the compilation is successful

Editing

Edit Dockerfile

Under the file directory with hello binary, compile the Dockerfile file as follows:

[root@localhost hello_qf] # ls

Dockerfile hello hello.c

[root@localhost hello_qf] # cat Dockerfile

FROM scratch

ADD hello /

CMD ["/ hello"]

ADD is to copy the hello document in the current directory to the root directory in the container, CMD executes the hello file in the root directory to build a new image.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report