DEV Community

Alex Spinov
Alex Spinov

Posted on

Depot Has a Free Docker Build Service — Build Container Images 20x Faster

A CI pipeline spent 12 minutes building Docker images. Every push. Every PR. That is 12 minutes of developers staring at a progress bar.

Docker builds are slow because: no persistent cache in CI, no native ARM builders, and layer caching resets every run.

Depot offers free Docker builds with persistent caching. 20x faster than building in CI.

What Depot Offers for Free

  • 100 Build Minutes/Month - Free tier
  • Persistent Cache - Cache survives between builds
  • Native ARM - Build arm64 without QEMU emulation
  • Multi-Platform - Build linux/amd64 and linux/arm64 in parallel
  • GitHub Actions - Drop-in replacement for docker/build-push-action

Quick Start

# .github/workflows/build.yml
- uses: depot/setup-action@v1
- uses: depot/build-push-action@v1
  with:
    project: YOUR_PROJECT_ID
    push: true
    tags: myapp:latest
Enter fullscreen mode Exit fullscreen mode

Same interface as docker/build-push-action, just faster.

Website: depot.dev - 100 free build minutes/month


Need to monitor and scrape data from multiple web services automatically? I build custom scraping solutions. Check out my web scraping toolkit or email me at spinov001@gmail.com for a tailored solution.

Top comments (0)