aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Malkiewicz <jan.malkiewicz@nokia.com>2020-12-01 14:32:52 +0100
committerJan Malkiewicz <jan.malkiewicz@nokia.com>2020-12-01 14:32:52 +0100
commitbeaaa274cf87fc7f45673c562cfcc31cb5d2e505 (patch)
tree1b3d2f1fea6d2c47a11068a6a7400a71ca23b257
parente87541f392a85b76410ecdcbe3b905121e41b550 (diff)
Add 'openssl' to onap-java11 docker image7.2.0
Issue-ID: OOM-2560 Signed-off-by: Jan Malkiewicz <jan.malkiewicz@nokia.com> Change-Id: Ib5d102a95df6aa5697e72b3e40ca47a078512cd7
-rw-r--r--.gitignore1
-rw-r--r--Dockerfile3
2 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..485dee6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.idea
diff --git a/Dockerfile b/Dockerfile
index 6585b1d..f70cac6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -9,6 +9,9 @@ ENV JAVA_SEC_OPTS=""
ARG user=onap
ARG group=onap
+# Install additional tools
+RUN apk add --no-cache openssl
+
# Create a group and user
RUN addgroup -S $group && adduser -G $group -D $user && \
mkdir /var/log/$user && \