You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have a question about building images. Is it possible to build images with tags like 1.33.0-php8.3.0 (the minor version is not specified now, which makes it difficult to keep the version up to date)
The text was updated successfully, but these errors were encountered:
Nope, we won't be providing exact minor versions for language runtimes exactly for the reason it's much easier to keep track without issuing new update to Docker Library - the images will get rebuilt when the underlying image changes (e.g. PHP 8.3.0 is updated to 8.3.1).
If you need a specific version, you can build it locally: Edit the Makefile in pkg/docker/, change the VERSIONS_php variable, and run make dockerfiles to generate a more specifically versioned Dockerfile.
You can then build an image from that with, e.g., make build-php8.3.0 (which is just a shortcut for docker build --pull --no-cache -t unit:1.33.0-php8.3.0 -f Dockerfile.php8.3.0)
Hi, I have a question about building images. Is it possible to build images with tags like 1.33.0-php8.3.0 (the minor version is not specified now, which makes it difficult to keep the version up to date)
The text was updated successfully, but these errors were encountered: