Home / Linux Containers / Linux Dockerfile

Linux Dockerfile is a script that automatically creates Linux containers on the Docker platform. A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image. The Docker platform runs natively on Linux and allows developers to build and run containers, self-contained Linux applications or systems with no dependencies on the underlying infrastructure. Built upon the resource-isolation features of the Linux kernel, Docker helps developers and system administrators port applications across different systems and machines by running them inside containers.

Docker containers, created by Linux Dockerfiles, can run on any Linux server. Linux container environments for applications are created using Docker images, which can be built either by executing commands manually or automatically through Linux Dockerfiles. Using Dockerfiles, developers can create an automated container build that executes several command-line instructions in succession, step by step. Docker containerization is essentially operating-system-level virtualization. Multiple independent containers may run within a single Linux instance without the startup overhead of virtual machines.

Linux Dockerfiles enable greater flexibility and portability of business applications. IT organizations use Linux Dockerfiles to package applications and their dependencies in a virtual container that can run on premises, in public or private clouds, or on bare metal. Such containers allow multiple applications, worker tasks and other processes to run autonomously on a single physical machine or across multiple virtual machines. Kubernetes is an open source system for automatically managing and orchestrating containerized applications created by Linux Dockerfiles.


Related Topics