We trying to install passenger in docker image, here is our base docker file
# Use the Ruby 3.2.2-bullseye image as a baseFROM ruby:3.2.2-bullseye# Install our PGP key and add HTTPS support for APT - testRUN apt-get update -y && apt-get install -y dirmngr \ gnupg \ apt-transport-https \ ca-certificates \ curl \ cron \ logrotateRUN curl https://oss-binaries.phusionpassenger.com/auto-software-signing-gpg-key.txt | gpg --dearmor | tee /etc/apt/trusted.gpg.d/phusion.gpg >/dev/null# Add our APT repositoryRUN sh -c 'echo deb https://oss-binaries.phusionpassenger.com/apt/passenger bullseye main > /etc/apt/sources.list.d/passenger.list'RUN apt-get updateRUN apt-get install -y gettext-base \ nginx-common=1.18.0-6.1+deb11u3 \ nginx-extras=1.18.0-6.1+deb11u3# Install Passenger + Nginx moduleRUN apt-get install -y libnginx-mod-http-passenger
we are getting error:
Unable to locate package libnginx-mod-http-passenger
It was working till yesterday, not sure if https://oss-binaries.phusionpassenger.com/ is down.
Thanks in advance!