You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
422 B
14 lines
422 B
FROM registry.access.redhat.com/rhscl/httpd-24-rhel7:latest
|
|
|
|
# CGI scripts go to /opt/rh/httpd24/root/var/www/cgi-bin/
|
|
ADD share/cgi-bin /opt/rh/httpd24/root/var/www/cgi-bin/
|
|
|
|
# Static files go to /opt/rh/httpd24/root/var/www/html
|
|
ADD share/html /opt/rh/httpd24/root/var/www/html
|
|
|
|
# Install missing Perl modules
|
|
RUN yum update -y \
|
|
&& yum install -y perl-CGI perl-Sys-CPU \
|
|
&& yum clean all \
|
|
&& rm -rf /var/cache/yum
|
|
|
|
|