Skip to content

Commit 64a50cf

Browse files
committed
Added licence and labels
1 parent c1a391c commit 64a50cf

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

OracleDatabase/SingleInstance/dockerfiles/23.26.0/Containerfile.free

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ FROM ${BASE_IMAGE} as base
2525
# Labels
2626
# ------
2727
LABEL "provider"="Oracle" \
28+
"maintainer"="Oracle Database Container Team <[email protected]>" \
29+
"vendor"="Oracle Corporation" \
30+
"version"="23.26.0" \
31+
"release"="Free" \
32+
"name"="Oracle AI Database 26ai Free" \
33+
"summary"="Oracle AI Database 26ai Free" \
34+
"description"="Oracle AI Database 26ai Free is a fully functional version of Oracle AI Database 26ai for developers to learn, build, and deploy applications." \
2835
"issues"="https://github.com/oracle/docker-images/issues" \
2936
"volume.data"="/opt/oracle/oradata" \
3037
"volume.setup.location1"="/opt/oracle/scripts/setup" \
@@ -111,7 +118,12 @@ USER root
111118
RUN $ORACLE_BASE/oraInventory/orainstRoot.sh && \
112119
$ORACLE_HOME/root.sh && \
113120
echo 'export ORACLE_SID=FREE' >> /home/oracle/.bashrc && \
114-
chown oracle.oinstall /home/oracle/.bashrc
121+
chown oracle.oinstall /home/oracle/.bashrc && \
122+
mkdir /licenses && \
123+
cp /usr/share/doc/oracle-free-26ai/LICENSE /licenses/license.txt && \
124+
chmod -R 644 /licenses/license.txt && \
125+
rm -rf /tmp/* /var/tmp/*
126+
115127

116128
USER oracle
117129
WORKDIR /home/oracle

0 commit comments

Comments
 (0)