Homebrew is a package management system for OS X. You can read more about it here, or simply run
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"to install it.
Homebrew is a package management system for OS X. You can read more about it here, or simply run
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"to install it.
| ARG RELEASE=bookworm | |
| FROM debian:${RELEASE}-slim | |
| LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | |
| # Define NGINX versions for NGINX Plus and NGINX Plus modules | |
| # Uncomment this block and the versioned nginxPackages block in the main RUN | |
| # instruction to install a specific release | |
| # ARG RELEASE | |
| # ENV NGINX_VERSION=34 |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| MAINLINE_VERSION=${MAINLINE_VERSION:-1.25.3} | |
| STABLE_VERSION=${STABLE_VERSION:-1.24.0} | |
| # Platforms based on https://github.com/nginxinc/docker-nginx-unprivileged/blob/main/README.md#architectures | |
| ALPINE_PLATFORMS=(amd64 arm/v6 arm/v7 arm64 386 ppc64le s390x) | |
| DEBIAN_PLATFORMS=(amd64 arm/v5 arm/v7 arm64 386 mips64le ppc64le s390x) |