Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package java16-devel-container for
openSUSE:Factory checked in at 2021-04-27 21:35:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/java16-devel-container (Old)
and /work/SRC/openSUSE:Factory/.java16-devel-container.new.12324 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "java16-devel-container"
Tue Apr 27 21:35:13 2021 rev:4 rq:888728 version:unknown
Changes:
--------
---
/work/SRC/openSUSE:Factory/java16-devel-container/java16-devel-container.changes
2021-03-24 16:12:21.103901206 +0100
+++
/work/SRC/openSUSE:Factory/.java16-devel-container.new.12324/java16-devel-container.changes
2021-04-27 21:35:40.756084241 +0200
@@ -1,0 +2,8 @@
+Tue Apr 27 08:58:40 UTC 2021 - Dirk M??ller <[email protected]>
+
+- stop specifying an entrypoint, these aren't services
+- use single layer
+- zypper clean after install
+- provide JAVA_VERSION, JAVA_ROOT and JAVA_HOME env
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ Dockerfile ++++++
--- /var/tmp/diff_new_pack.NDjDB9/_old 2021-04-27 21:35:41.192084959 +0200
+++ /var/tmp/diff_new_pack.NDjDB9/_new 2021-04-27 21:35:41.192084959 +0200
@@ -16,9 +16,16 @@
# Work around https://github.com/openSUSE/obs-build/issues/487
ARG RELEASE_PACKAGE=openSUSE-release-appliance-docker
-RUN zypper install -y $RELEASE_PACKAGE
+
+ARG LIBDIR=/usr/lib64
+ENV JAVA_BINDIR=$LIBDIR/jvm/java/bin
+ENV JAVA_HOME=$LIBDIR/jvm/java
+ENV JAVA_ROOT=$LIBDIR/jvm/java
+ENV JAVA_VERSION=16
# Development packages
-RUN zypper install -y --no-recommends java-16-openjdk-devel maven git-core
+RUN zypper -n install --no-recommends $RELEASE_PACKAGE \
+ java-16-openjdk-devel maven git-core && \
+ zypper clean -a
-ENTRYPOINT [ "/bin/bash" ]
+CMD [ "jshell" ]