OpenSuse docker file for db-migrator 41/131541/2
authordanielhanrahan <daniel.hanrahan@est.tech>
Tue, 18 Oct 2022 12:20:13 +0000 (13:20 +0100)
committerDaniel Hanrahan <daniel.hanrahan@est.tech>
Tue, 18 Oct 2022 20:32:24 +0000 (20:32 +0000)
Create OpenSuse docker file
Add build profile for OpenSuse docker image

Issue-ID: POLICY-4309
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: I80ec31c62096f9aefa2b729a4e024f63d04e62ad

policy-db-migrator/src/main/docker/suse.Dockerfile [new file with mode: 0644]
pom.xml

diff --git a/policy-db-migrator/src/main/docker/suse.Dockerfile b/policy-db-migrator/src/main/docker/suse.Dockerfile
new file mode 100644 (file)
index 0000000..bce3134
--- /dev/null
@@ -0,0 +1,55 @@
+#-------------------------------------------------------------------------------
+# Dockerfile
+# ============LICENSE_START=======================================================
+#  Copyright (C) 2022 Nordix Foundation.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# SPDX-License-Identifier: Apache-2.0
+# ============LICENSE_END=========================================================
+#-------------------------------------------------------------------------------
+FROM opensuse/leap:15.4
+
+LABEL maintainer="Policy Team"
+LABEL org.opencontainers.image.title="Policy db-migrator"
+LABEL org.opencontainers.image.description="Policy db-migrator image based on OpenSuse"
+LABEL org.opencontainers.image.url="https://github.com/onap/policy-docker"
+LABEL org.opencontainers.image.vendor="ONAP Policy Team"
+LABEL org.opencontainers.image.licenses="Apache-2.0"
+LABEL org.opencontainers.image.created="${git.build.time}"
+LABEL org.opencontainers.image.version="${git.build.version}"
+LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}"
+
+ENV JAVA_HOME /usr/lib64/jvm/java-11-openjdk-11
+ENV POLICY_ETC /opt/app/policy/etc
+ENV POLICY_PROFILE /opt/app/policy/etc/profile.d
+ENV POLICY_BIN /opt/app/policy/bin
+
+RUN zypper -n -q install --no-recommends cpio findutils mariadb-client netcat-openbsd postgresql util-linux && \
+    zypper -n -q update && \
+    zypper -n -q clean --all && \
+    groupadd --system policy && \
+    useradd --system --shell /bin/sh -G policy policy && \
+    mkdir -p $POLICY_PROFILE $POLICY_BIN && \
+    chown -R policy:policy $POLICY_ETC $POLICY_BIN
+
+COPY --chown=policy:policy ./env.sh $POLICY_PROFILE/
+COPY --chown=policy:policy ./db-migrator $POLICY_BIN/
+COPY --chown=policy:policy ./db-migrator-pg $POLICY_BIN/
+COPY --chown=policy:policy ./prepare_upgrade.sh $POLICY_BIN/
+COPY --chown=policy:policy ./prepare_downgrade.sh $POLICY_BIN/
+COPY --chown=policy:policy ./config/policyadmin/sql /home/policy/sql
+COPY --chown=policy:policy ./config/policyadmin/postgres /home/policy/postgres
+
+WORKDIR $POLICY_BIN
+USER policy:policy
diff --git a/pom.xml b/pom.xml
index a98254e..80c922e 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                 <module>policy-db-migrator</module>
             </modules>
         </profile>
+        <profile>
+            <id>dockersuse</id>
+            <modules>
+                <module>policy-jre</module>
+                <module>policy-jdk</module>
+                <module>policy-db-migrator</module>
+            </modules>
+            <properties>
+                <docker.dbm.dockerFile>suse.Dockerfile</docker.dbm.dockerFile>
+            </properties>
+        </profile>
     </profiles>
 </project>