phusion / passenger

A fast and robust web server and application server for Ruby, Python and Node.js
https://www.phusionpassenger.com/
MIT License
5.01k stars 547 forks source link

Unable to locate package libnginx-mod-http-passenger | bullseye #2542

Closed gl-dev-avinash closed 6 months ago

gl-dev-avinash commented 6 months ago

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

It was working till yesterday, not sure if https://oss-binaries.phusionpassenger.com/ is down. Please let me know if you need more detail.

CamJN commented 6 months ago

dup of https://github.com/phusion/passenger/issues/2543