|
| 1 | +# |
| 2 | +# Copyright (c) 2025 Oracle and/or its affiliates. All rights reserved. |
| 3 | + |
| 4 | + |
| 5 | +# |
| 6 | +# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl. |
| 7 | +# |
| 8 | +# ORACLE HTTP Server DOCKERFILES PROJECT |
| 9 | +# ----------------------------------------- |
| 10 | +# This is the DockerFile for Oracle HTTP Server 14.1.2.0.0 |
| 11 | +# |
| 12 | +# IMPORTANT |
| 13 | +# ------------------------------------------- |
| 14 | +# The resulting image of this Dockerfile would have Oracle Linux 8 and 9 and Oracle HTTP Server 14.1.2.0.0 installed in standalone mode. |
| 15 | + |
| 16 | +# A standalone domain will be configured in this image |
| 17 | +# |
| 18 | +# REQUIRED FILES TO BUILD THIS IMAGE |
| 19 | +# ---------------------------------- |
| 20 | +# (1) V1045136-01.zip Oracle HTTP Server 14.1.2.0 for Linux x86-64 installer |
| 21 | +# Download from http://www.oracle.com/technetwork/middleware/webtier/downloads/index-jsp-156711.html |
| 22 | +# unzip you will need the OHS installer (bin file) fmw_14.1.2.0.0_ohs_linux64.bin |
| 23 | +# |
| 24 | +# |
| 25 | +# HOW TO BUILD THIS IMAGE |
| 26 | +# ----------------------- |
| 27 | +# Put all downloaded files in the same directory as this Dockerfile |
| 28 | +# As root user run following command manually: |
| 29 | +# |
| 30 | +# $ sh buildDockerImage.sh -v 14.1.2.0.0 |
| 31 | +# |
| 32 | +# Alternatively you can also run |
| 33 | +# |
| 34 | +# $ docker build --force-rm=true --no-cache=true --rm=true -t oracle/$IMAGE_NAME:$VERSION-$INSTALL_TYPE . |
| 35 | +# |
| 36 | +# For example |
| 37 | +# |
| 38 | +# $ docker build --force-rm=true --no-cache=true --rm=true -t oracle/ohs:14.1.2.0.0 . |
| 39 | +# |
| 40 | +# Pull JDK 17 image from OCR as base image |
| 41 | +# ----------------------------------------- |
| 42 | +FROM container-registry.oracle.com/java/jdk:17.0.14 |
| 43 | + |
| 44 | +# Environment variables required for this build (do NOT change) |
| 45 | +# ---------------------------------------------- |
| 46 | +ENV OHS_PKG=V1045136-01.zip |
| 47 | +ENV OHS_BIN=fmw_14.1.2.0.0_ohs_linux64.bin |
| 48 | +ENV ORACLE_HOME=/u01/oracle |
| 49 | +ENV NM_PORT=5556 |
| 50 | +ENV OHS_LISTEN_PORT=7777 |
| 51 | +ENV OHS_SSL_PORT=4443 |
| 52 | +ENV JAVA_HOME=/usr/java/default |
| 53 | +ENV DOMAIN_NAME=ohsDomain |
| 54 | +ENV OHS_COMPONENT_NAME=ohs1 |
| 55 | +ENV PATH=${PATH}:${ORACLE_HOME}:/usr/java/default/bin:${ORACLE_HOME}/oracle_common/common/bin:${ORACLE_HOME}/user_projects/domains/ohsDomain/bin |
| 56 | +ENV WLST_HOME=/u01/oracle/oracle_common/common/bin |
| 57 | + |
| 58 | + |
| 59 | +# Copy packages to the new drive |
| 60 | +# ------------------------------------------------------- |
| 61 | +COPY ${OHS_PKG} install.file oraInst.loc /u01/ |
| 62 | + |
| 63 | +# Install OL 8 or OL 9 required packages. Refer FMW 14.1.2.0.0 System requirements guide for complete list of packages |
| 64 | +# Setup filesystem and oracle user |
| 65 | +#--------------------------------------------------------------------------------------------------------- |
| 66 | +RUN yum install -y unzip libaio sysstat make psmisc gcc && \ |
| 67 | + yum clean all && \ |
| 68 | + chmod a+xr /u01 && \ |
| 69 | + useradd -b /u01 -m -s /bin/bash oracle && \ |
| 70 | + mkdir /u01/oracle/.inventory /u01/oracle/bootdir && \ |
| 71 | + chown oracle:oracle -R /u01 |
| 72 | + |
| 73 | +# Go to /u01 as user 'oracle' to proceed with OHS installation |
| 74 | +#-------------------------------------------------------- |
| 75 | +USER oracle |
| 76 | +WORKDIR /u01 |
| 77 | +#RUN unzip -q /u01/${OHS_PKG} && cd - && \ |
| 78 | +RUN unzip -q /u01/${OHS_PKG} && \ |
| 79 | + /u01/${OHS_BIN} -silent -novalidation -responseFile /u01/install.file -invPtrLoc /u01/oraInst.loc ORACLE_HOME=${ORACLE_HOME} && \ |
| 80 | + rm /u01/${OHS_BIN} /u01/oraInst.loc /u01/install.file && \ |
| 81 | + mkdir -p /u01/oracle/logs && \ |
| 82 | + chown oracle:oracle -R /u01/oracle/logs |
| 83 | + |
| 84 | +# Copy required files to build this image |
| 85 | +# ------------------------------------------------------ |
| 86 | +COPY container-scripts/* /u01/oracle/ |
| 87 | + |
| 88 | +#Expose all Ports |
| 89 | +EXPOSE ${OHS_SSL_PORT} ${OHS_LISTEN_PORT} ${NM_PORT} |
| 90 | + |
| 91 | +# Final setup |
| 92 | +USER oracle |
| 93 | +WORKDIR ${ORACLE_HOME} |
| 94 | + |
| 95 | +# Provision OHS instance |
| 96 | +CMD ["/u01/oracle/provisionOHS.sh"] |
0 commit comments