diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-08-12 18:27:48 +0200 |
---|---|---|
committer | mrichomme <morgan.richomme@orange.com> | 2020-08-13 10:10:09 +0200 |
commit | 042cb513412d19c394e3808668e7535e4fd1b35c (patch) | |
tree | 70dc5876a1185d2dd658dbbb028067d2c0a76b70 | |
parent | a6cdfc231093896dd4cfba8233a1ace5ae8c8e6d (diff) |
Remove ONBUILD directive to allow project to install their libs7.0.1
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 <morgan.richomme@orange.com>
Change-Id: Ibd28c4d90798e20de1b685852421fdcca90bb14a
Signed-off-by: mrichomme <morgan.richomme@orange.com>
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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 |