-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add developer images for the new modules in Oracle Linux 8 Update 9
Signed-off-by: Avi Miller <[email protected]>
- Loading branch information
1 parent
ad7ea97
commit 9715632
Showing
8 changed files
with
138 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright (c) 2023 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
FROM ghcr.io/oracle/oraclelinux:8 | ||
|
||
RUN \ | ||
# Explicitly disable PHP to suppress conflicting requests error | ||
dnf -y module disable php \ | ||
&& \ | ||
dnf -y module enable nginx:1.22 && \ | ||
dnf -y install nginx && \ | ||
rm -rf /var/cache/dnf \ | ||
&& \ | ||
# forward request and error logs to container engine log collector | ||
ln -sf /dev/stdout /var/log/nginx/access.log && \ | ||
ln -sf /dev/stderr /var/log/nginx/error.log | ||
|
||
EXPOSE 80/tcp | ||
EXPOSE 443/tcp | ||
|
||
STOPSIGNAL SIGQUIT | ||
|
||
CMD ["nginx", "-g", "daemon off;"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.20 | ||
1.22 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright (c) 2023, Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
FROM ghcr.io/oracle/oraclelinux:8 | ||
|
||
RUN dnf -y module enable nodejs:20 && \ | ||
dnf -y install nodejs npm && \ | ||
rm -rf /var/cache/dnf | ||
|
||
CMD ["/bin/node", "-v"] |
37 changes: 37 additions & 0 deletions
37
OracleLinuxDevelopers/oraclelinux8/php/8.0-apache/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright (c) 2023 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
FROM ghcr.io/oracle/oraclelinux:8 | ||
|
||
# hadolint shell=/usr/bin/bash | ||
RUN dnf -y module enable php:8.0 httpd:2.4 && \ | ||
dnf -y install httpd httpd-filesystem httpd-tools \ | ||
mod_http2 mod_ssl openssl \ | ||
php php-cli php-common php-json php-mbstring php-mysqlnd php-pdo php-xml && \ | ||
rm -rf /var/cache/dnf \ | ||
&& \ | ||
# Disable event module and enable prefork so that mod_php is enabled | ||
sed -i 's/#LoadModule mpm_prefork_module modules\/mod_mpm_prefork.so/LoadModule mpm_prefork_module modules\/mod_mpm_prefork.so/' /etc/httpd/conf.modules.d/00-mpm.conf && \ | ||
sed -i 's/LoadModule mpm_event_module modules\/mod_mpm_event.so/#LoadModule mpm_event_module modules\/mod_mpm_event.so/' /etc/httpd/conf.modules.d/00-mpm.conf && \ | ||
# Disable HTTP2 as it is not supported with the prefork module | ||
sed -i 's/LoadModule http2_module modules\/mod_http2.so/#LoadModule http2_module modules\/mod_http2.so/' /etc/httpd/conf.modules.d/10-h2.conf && \ | ||
sed -i 's/LoadModule proxy_http2_module modules\/mod_proxy_http2.so/#LoadModule proxy_http2_module modules\/mod_proxy_http2.so/' /etc/httpd/conf.modules.d/10-proxy_h2.conf \ | ||
&& \ | ||
# Create self-signed certificate for mod_ssl | ||
openssl req -x509 -nodes -newkey rsa:4096 \ | ||
-keyout /etc/pki/tls/private/localhost.key \ | ||
-out /etc/pki/tls/certs/localhost.crt \ | ||
-days 3650 -subj '/CN=localhost' \ | ||
&& \ | ||
# Redirect logging to stdout/stderr for container logging to work | ||
sed -i 's/;error_log = syslog/error_log = \/dev\/stderr/' /etc/php.ini && \ | ||
ln -sf /dev/stdout /var/log/httpd/access_log && \ | ||
ln -sf /dev/stderr /var/log/httpd/error_log && \ | ||
ln -sf /dev/stdout /var/log/httpd/ssl_access_log && \ | ||
ln -sf /dev/stderr /var/log/httpd/ssl_error_log && \ | ||
# Disable userdirs and the auto-generated welcome message | ||
rm -f /etc/httpd/conf.d/{userdir.conf,welcome.conf} | ||
|
||
EXPOSE 80 443 | ||
|
||
CMD ["/sbin/httpd", "-DFOREGROUND"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright (c) 2023 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
FROM ghcr.io/oracle/oraclelinux:8 | ||
|
||
RUN dnf -y module enable php:8.0 && \ | ||
dnf -y install php-cli \ | ||
php-common \ | ||
php-json \ | ||
php-mbstring \ | ||
php-mysqlnd \ | ||
php-pdo \ | ||
php-xml && \ | ||
rm -rf /var/cache/dnf | ||
|
||
CMD ["/bin/php", "-v"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright (c) 2023 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
FROM ghcr.io/oracle/oraclelinux:8 | ||
|
||
RUN dnf -y module enable php:8.0 && \ | ||
dnf -y install php-cli \ | ||
php-common \ | ||
php-fpm \ | ||
php-json \ | ||
php-mbstring \ | ||
php-mysqlnd \ | ||
php-pdo \ | ||
php-soap \ | ||
php-xml && \ | ||
rm -rf /var/cache/dnf \ | ||
&& \ | ||
# Enable external access to PHP-FPM | ||
mkdir -p /run/php-fpm && \ | ||
sed -i '/^listen = /clisten = 0.0.0.0:9000' /etc/php-fpm.d/www.conf && \ | ||
sed -i '/^listen.allowed_clients/c;listen.allowed_clients =' /etc/php-fpm.d/www.conf \ | ||
&& \ | ||
# Redirect worker output to stdout for container logging | ||
sed -i '/^;catch_workers_output/ccatch_workers_output = yes' /etc/php-fpm.d/www.conf | ||
|
||
EXPOSE 9000 | ||
|
||
WORKDIR /var/www | ||
|
||
CMD ["/sbin/php-fpm", "-F", "-O"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright (c) 2023 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
FROM ghcr.io/oracle/oraclelinux:8 | ||
|
||
|
||
RUN dnf -y module enable ruby:3.1 && \ | ||
dnf -y install ruby ruby-libs ruby-devel ruby-irb \ | ||
rubygems rubygem-rake rubygem-bundler \ | ||
gcc make && \ | ||
rm -rf /var/cache/dnf | ||
|
||
CMD ["irb"] |