Build

docker build -t fastapi .
  • docker build
    • build the image
  • -t fastapi
    • an optional tag for the image
  • .
    • where to place the built image

Backlinks