From 042cb513412d19c394e3808668e7535e4fd1b35c Mon Sep 17 00:00:00 2001 From: mrichomme Date: Wed, 12 Aug 2020 18:27:48 +0200 Subject: Remove ONBUILD directive to allow project to install their libs the ONBUILD leads to the installation of python libs but some python libs required some system libraries As the baseline has to be GPLv3 free, it is not possible to rely on a list the easiet way iis to remove the directive projects are responsible of the libs they introduce Issue-ID: INT-1589 Signed-off-by: mrichomme Change-Id: Ibd28c4d90798e20de1b685852421fdcca90bb14a Signed-off-by: mrichomme --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c49b78b..6e2789e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,3 @@ RUN addgroup -S $group && adduser -S -D -h /home/$user $user $group && \ # Tell docker that all future commands should be run as the onap user USER $user WORKDIR /app - -ONBUILD COPY requirements.txt . -ONBUILD RUN pip install --no-cache-dir -r requirements.txt -- cgit 1.2.3-korg