Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 494 Bytes

docker-build-image-with-dockerfile.md

File metadata and controls

17 lines (10 loc) · 494 Bytes

Build Docker Image Using Dockerfile

Creates a new image of using the Dockerfile. Run the below command inside your project directory where Dockerfile is present

docker build -t {{IMAGE_NAME}} .

  • IMAGE_NAME: Name for the new image which will get build

Example:

docker build -t ak-cli .

Related Commands