From: Ittay Stern Date: Tue, 25 Feb 2020 06:51:03 +0000 (+0200) Subject: Move to debian `apt` (was alpine `apk`) X-Git-Tag: 6.0.3~15 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=9390a1c811b1659fa66ab6c885f45a2225ea6326;p=vid.git Move to debian `apt` (was alpine `apk`) Issue-ID: VID-498 Issue-ID: VID-756 Change-Id: Id324e2970022618acfad6e478a21134525b6cf06 Signed-off-by: Ittay Stern --- diff --git a/deliveries/src/main/docker/docker-files/Dockerfile b/deliveries/src/main/docker/docker-files/Dockerfile index be6c08bc3..0279750e2 100755 --- a/deliveries/src/main/docker/docker-files/Dockerfile +++ b/deliveries/src/main/docker/docker-files/Dockerfile @@ -1,7 +1,11 @@ FROM tomcat:9-jdk11-openjdk-slim # add vim and uncomment alias to speedup troubleshooting purpose -RUN apk update && apk add openjdk8 vim net-tools +RUN apt-get update && apt-get install -y \ + curl \ + vim \ + net-tools \ +&& rm -rf /var/lib/apt/lists/* ARG user=onap ARG group=onap