Skip to content

Commit 47c6fa0

Browse files
committed
Replace 'nginx-mod-stream', and 'nginx-mod-http-perl' with 'nginx-all-modules'
Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 4c2a652 commit 47c6fa0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

1.26/Dockerfile.c9s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ENV NGINX_CONFIGURATION_PATH=${APP_ROOT}/etc/nginx.d \
4040

4141
# Modules does not exist
4242
RUN yum -y module enable nginx:$NGINX_VERSION && \
43-
INSTALL_PKGS="nss_wrapper bind-utils gettext hostname nginx nginx-mod-stream nginx-mod-http-perl" && \
43+
INSTALL_PKGS="nss_wrapper bind-utils gettext hostname nginx nginx-all-modules" && \
4444
yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
4545
rpm -V $INSTALL_PKGS && \
4646
nginx -v 2>&1 | grep -qe "nginx/$NGINX_VERSION\." && echo "Found VERSION $NGINX_VERSION" && \

1.26/Dockerfile.rhel9

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ENV NGINX_CONFIGURATION_PATH=${APP_ROOT}/etc/nginx.d \
3939
NGINX_PERL_MODULE_PATH=${APP_ROOT}/etc/perl
4040

4141
RUN yum -y module enable nginx:$NGINX_VERSION && \
42-
INSTALL_PKGS="nss_wrapper-libs bind9.18-utils gettext hostname nginx nginx-mod-stream nginx-mod-http-perl" && \
42+
INSTALL_PKGS="nss_wrapper-libs bind9.18-utils gettext hostname nginx nginx-all-modules" && \
4343
yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
4444
rpm -V $INSTALL_PKGS && \
4545
nginx -v 2>&1 | grep -qe "nginx/$NGINX_VERSION\." && echo "Found VERSION $NGINX_VERSION" && \

0 commit comments

Comments
 (0)