diff options
author | Jan Malkiewicz <jan.malkiewicz@nokia.com> | 2020-12-01 14:32:52 +0100 |
---|---|---|
committer | Jan Malkiewicz <jan.malkiewicz@nokia.com> | 2020-12-01 14:32:52 +0100 |
commit | beaaa274cf87fc7f45673c562cfcc31cb5d2e505 (patch) | |
tree | 1b3d2f1fea6d2c47a11068a6a7400a71ca23b257 | |
parent | e87541f392a85b76410ecdcbe3b905121e41b550 (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-- | .gitignore | 1 | ||||
-rw-r--r-- | Dockerfile | 3 |
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 @@ -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 && \ |