Zwlin's Blog

[笔记] Dockerfile

Last updated: 2020/11/09     Published at: 2020/11/09

FROM

1FROM [--platform=<platform>] <image> [AS <name>]
2#or
3FROM [--platform=<platform>] <image>[:<tag>] [AS <name>]
4#or
5FROM [--platform=<platform>] <image>[@<digest>] [AS <name>]

ARG

1ARG <name>[=<default value>]

The ARG instruction defines a variable that users can pass at build-time to the builder with the docker build command using the --build-arg <varname>=<value> flag

ENV

1ENV <key>=<value> ...

The ENV instruction sets the environment variable <key> to the value <value>。This value will be in the environment for all subsequent instructions in the build stage and can be replaced inline in many as well. The value will be interpreted for other environment variables, so quote characters will be removed if they are not escaped. Like command line parsing, quotes and backslashes can be used to include spaces within values.

The environment variables set using ENV will persist when a container is run from the resulting image. You can view the values using docker inspect,and change them using docker run --env <key>=<value>

RUN

1RUN <command>
2#or
3RUN ["executable","param1","param2"]

SHELL

1SHELL ["executable","parameters"]

The SHELL instruction allows the default shell used for the shell form of commands to be overridden. The default shell on Linux is ["/bin/sh", "-c"],and on Windows is ["cmd", "/S", "/C"]。The SHELL instruction must be written in JSON form in a Dockerfile.

The following instructions can be affected by the SHELL instruction when the shell form of them is used in a Dockerfile:RUNCMD and ENTRYPOINT

What is the difference between using bash and sh to run a script?

CMD

1CMD ["executable","param1","param2"]
2#or
3CMD ["param1","param2"]
4#or
5CMD command param1 param2

There can only be one CMD instruction in a Dockerfile。If you list more than one CMD then only the last CMD will take effect.

**The main purpose of a CMD is to provide defaults for an executing container.**These defaults can include an executable, or they can omit the executable, in which case you must specify an ENTRYPOINT instruction as well.

If the user specifies arguments to docker run then they will override the default specified in CMD

ENTRYPOINT

1ENTRYPOINT ["executable","param1","param2"]
2#or
3ENTRYPOINT command param1 param2

An ENTRYPOINT allows you to configure a container that will run as an executable.

Command line arguments to docker run <image> will be appended after all elements in an exec form ENTRYPOINT,and will override all elements specified using CMD。This allows arguments to be passed to the entry point,i.e., docker run <image> -d will pass the -d argument to the entry point. You can override the ENTRYPOINT instruction using the docker run --entrypoint flag。

Understand how CMD and ENTRYPOINT interact

LABEL

1LABEL <key>=<value> <key>=<value> <key>=<value> ...

The LABEL instruction adds metadata to an image. A LABEL is a key-value pair. To include spaces within a LABEL value, use quotes and backslashes as you would in command-line parsing.

EXPOSE

1EXPOSE <port> [<port>/<protocol>...]

The EXPOSE instruction informs Docker that the container listens on the specified network ports at runtime. You can specify whether the port listens on TCP or UDP, and the default is TCP if the protocol is not specified.

The EXPOSE instruction does not actually publish the port. It functions as a type of documentation between the person who builds the image and the person who runs the container, about which ports are intended to be published. To actually publish the port when running the container, use the -p flag on docker run to publish and map one or more ports, or the -P flag to publish all exposed ports and map them to high-order ports.

ADD

1ADD [--chown=<user>:<group>] <src>... <dest>
2#or
3ADD [--chown=<user>:<group>] ["<src>",... "<dest>"]

The ADD instruction copies new files, directories or remote file URLs from <src> and adds them to the filesystem of the image at the path <dest>

The <dest> is an absolute path,or a path relative to WORKDIR,into which the source will be copied inside the destination container。

The <src> path must be inside the context of the build.

COPY

1COPY [--chown=<user>:<group>] <src>... <dest>
2#or
3COPY [--chown=<user>:<group>] ["<src>",... "<dest>"]

The COPY instruction copies new files or directories from <src> and adds them to the filesystem of the container at the path <dest>

The <src> path must be inside the context of the build.

VOLUME

1VOLUME ["/data"]

The VOLUME instruction creates a mount point with the specified name and marks it as holding externally mounted volumes from native host or other containers. The value can be a JSON array,VOLUME ["/var/log/"],or a plain string with multiple arguments,such as VOLUME /var/log or VOLUME /var/log /var/db

USER

1USER <user>[:<group>]
2#or
3USER <UID>[:<GID>]

The USER instruction sets the user name (or UID) and optionally the user group (or GID) to use when running the image and for any RUNCMD and ENTRYPOINT instructions that follow it in the Dockerfile

WORKDIR

1WORKDIR /path/to/workdir

The WORKDIR instruction sets the working directory for any RUNCMDENTRYPOINTCOPY and ADD instructions that follow it in the Dockerfile。If the WORKDIR doesn’t exist, it will be created even if it’s not used in any subsequent Dockerfile instruction。

The WORKDIR instruction can be used multiple times in a Dockerfile。If a relative path is provided,it will be relative to the path of the previous WORKDIR instruction。

STOPSIGNAL

1STOPSIGNAL signal

The STOPSIGNAL instruction sets the system call signal that will be sent to the container to exit. This signal can be a valid unsigned number that matches a position in the kernel’s syscall table, for instance 9, or a signal name in the format SIGNAME, for instance SIGKILL.

HEALTHCHECK

1HEALTHCHECK [OPTIONS] CMD command
2#or
3HEALTHCHECK NONE

The HEALTHCHECK instruction tells Docker how to test a container to check that it is still working. This can detect cases such as a web server that is stuck in an infinite loop and unable to handle new connections, even though the server process is still running.

References