Add utilities to adml-http image
authorEduardo Ramos Testillano (ert) <eduardo.ramos.testillano@gmail.com>
Fri, 25 Jun 2021 11:56:07 +0000 (13:56 +0200)
committerEduardo Ramos Testillano (ert) <eduardo.ramos.testillano@gmail.com>
Fri, 25 Jun 2021 11:56:07 +0000 (13:56 +0200)
docker-images/anna-adml-http/Dockerfile

index 21d330b..9a3a7a7 100644 (file)
@@ -2,10 +2,15 @@ FROM nginx
 COPY etc/ /etc
 COPY opt/adml/ /opt/adml
 
+RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y tshark
+
 RUN apt-get update && apt-get install -y \
-   procps \
    net-tools \
-   tshark
+   procps \
+   python3 \
+   python3-pip
+
+RUN pip3 install xmltodict
 
 COPY starter.sh /var/starter.sh