From 4cad79997f24912ec12f67593d0579f73cb6e8aa Mon Sep 17 00:00:00 2001 From: Samir Faci Date: Thu, 6 Jul 2023 11:51:27 -0400 Subject: [PATCH] Fixing docker build --- docker/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 446748af..9e17615d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -21,10 +21,10 @@ RUN apt update \ libpq-dev \ python3 \ python3-pip \ - netcat \ - iputils-ping \ - && pip3 install -r /home/$USER/opennsa/requirements.txt \ - && chown $USER:$USER -R /home/opennsa/opennsa \ + netcat-openbsd \ + iputils-ping && \ + pip3 install --break-system-packages -r /home/$USER/opennsa/requirements.txt && \ + chown $USER:$USER -R /home/opennsa/opennsa \ # -- Cleanup -- && apt remove -y python3-pip \ && apt autoremove -y \