Building Images

  • Docker images will build in the context of the "FROM" environment
  • Builds run with only the information you share (via COPY)
  • Builds should run "from scratch" and be reproducible anywhere
  • Builds should rely only on "source code" rather than build artifacts or dependencies
  • Builds can be slow and images can be very large

7 / 14