We trying to install passenger in docker image, here is our base docker file
# Use the Ruby 3.2.2-bullseye image as a base
FROM ruby:3.2.2-bullseye
# Install our PGP key and add HTTPS support for APT - test
RUN apt-get update -y && apt-get install -y dirmngr \
gnupg \
apt-transport-https \
ca-certificates \
curl \
cron \
logrotate
RUN 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 repository
RUN sh -c 'echo deb https://oss-binaries.phusionpassenger.com/apt/passenger bullseye main > /etc/apt/sources.list.d/passenger.list'
RUN apt-get update
RUN 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 module
RUN apt-get install -y libnginx-mod-http-passenger
we are getting error:
Unable to locate package libnginx-mod-http-passenger
We trying to install passenger in docker image, here is our base docker file
we are getting error:
It was working till yesterday, not sure if https://oss-binaries.phusionpassenger.com/ is down. Please let me know if you need more detail.