Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 379 Bytes

RUN.md

File metadata and controls

11 lines (7 loc) · 379 Bytes

RUN

  • The RUN command executes commands during the image build process. It is commonly used to install packages, update system software, or perform any setup necessary to prepare the image.

Example:

RUN apt-get update && apt-get install -y some-package

This example updates the package manager and installs a package during the image build process.