-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Add OL10 developer images #3025
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jakegt1
wants to merge
4
commits into
oracle:main
Choose a base branch
from
jakegt1:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,9 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN dnf -y install go-toolset-1.24.6 && \ | ||
rm -rf /var/cache/dnf | ||
|
||
CMD ["/bin/go", "version"] |
This file contains hidden or 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,9 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN dnf -y install go-toolset && \ | ||
rm -rf /var/cache/dnf | ||
|
||
CMD ["/bin/go", "version"] |
14 changes: 14 additions & 0 deletions
14
OracleLinuxDevelopers/oraclelinux10/haproxy/3.0/Dockerfile
This file contains hidden or 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,14 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN \ | ||
dnf -y install haproxy && \ | ||
rm -rf /var/cache/dnf | ||
|
||
EXPOSE 5000 | ||
|
||
CMD ["/usr/sbin/haproxy", "-p", "/run/haproxy.pid", "-f", "/etc/haproxy/haproxy.cfg", "-W", "-db"] | ||
|
||
|
This file contains hidden or 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,21 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN dnf install -y httpd mod_ssl && \ | ||
rm -rf /var/cache/dnf | ||
|
||
RUN sed -i \ | ||
-e 's/^SSLCertificateFile .*/SSLCertificateFile \/certs\/fullchain.pem/g' \ | ||
-e 's/^SSLCertificateKeyFile .*/SSLCertificateKeyFile \/certs\/privkey.pem/g' \ | ||
/etc/httpd/conf.d/ssl.conf | ||
|
||
RUN mkdir -p /certs | ||
|
||
ENV CERTIFICATE_DIR /certs | ||
ENV KEY_DIR /certs | ||
|
||
COPY ./entrypoint.sh /opt/entrypoint.sh | ||
|
||
CMD ["/opt/entrypoint.sh"] |
18 changes: 18 additions & 0 deletions
18
OracleLinuxDevelopers/oraclelinux10/nginx/1.26-core/Dockerfile
This file contains hidden or 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,18 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN dnf -y install nginx-core && \ | ||
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;"] |
18 changes: 18 additions & 0 deletions
18
OracleLinuxDevelopers/oraclelinux10/nginx/1.26-full/Dockerfile
This file contains hidden or 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,18 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN dnf -y install nginx-all-modules && \ | ||
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 hidden or 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,18 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN 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 hidden or 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,9 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN dnf -y install nodejs nodejs-nodemon npm && \ | ||
rm -rf /var/cache/dnf | ||
|
||
CMD ["/bin/node", "-v"] |
13 changes: 13 additions & 0 deletions
13
OracleLinuxDevelopers/oraclelinux10/python/3.12-oracledb/Dockerfile
This file contains hidden or 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) 2025 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/oraclelinux10-python:3.12 | ||
|
||
RUN dnf -y install oraclelinux-developer-release-el10 && \ | ||
dnf -y install python3.12-oracledb && \ | ||
# Optionally install Oracle Instant Client to use python-oracledb Thick mode | ||
# dnf -y install oracle-instantclient-release-23ai-el10 && \ | ||
# dnf -y install oracle-instantclient-basic && \ | ||
rm -rf /var/cache/dnf | ||
|
||
CMD ["/bin/python3", "--version"] |
This file contains hidden or 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,9 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN dnf -y install python3 python3-libs python3-pip python3-setuptools && \ | ||
rm -rf /var/cache/dnf | ||
|
||
CMD ["/usr/bin/python3.12", "-V"] |
This file contains hidden or 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,11 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN dnf -y install ruby ruby-libs ruby-devel ruby-irb \ | ||
rubygems rubygem-rake rubygem-bundler \ | ||
gcc make && \ | ||
rm -rf /var/cache/dnf | ||
|
||
CMD ["irb"] |
This file contains hidden or 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,18 @@ | ||
# Copyright (c) 2025 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:10 | ||
|
||
RUN dnf install -y valkey && \ | ||
rm -rf /var/cache/dnf | ||
|
||
RUN sed -i.bak \ | ||
-e 's/protected-mode yes/protected-mode no/g' \ | ||
-e 's/^bind/# bind/g' \ | ||
-e 's/^unixsocket/# unixsocket/g' \ | ||
-e 's/^logfile .*/logfile \"\"/g' \ | ||
/etc/valkey/valkey.conf | ||
|
||
EXPOSE 6379 | ||
|
||
CMD ["valkey-server", "/etc/valkey/valkey.conf"] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete the references to Instant Client - it hasn't been released for OL10.