|
|
|
|
|
by diggan
821 days ago
|
|
> What's the point of using Docker for PHP apps? Same reason you'd use Docker for anything, why would it matter if it's Python, PHP or Rust? Is there something specific about the language that makes Python (or other language) more suitable with Docker for you, compared to PHP? (Personally I only use Docker when I start to deal with multiple hosts/distributed architecture, which doesn't happen a lot tbh) |
|
Python has notoriously awful dependency management. One of the biggest appeals of Docker is that it lets you build the equivalent of a "fat jar" so that you get at least somewhat reproducible versions of your dependencies at runtime. For a language with decent dependency management the value proposition is much weaker.