9a3a7a72aae8c683a288d56e428a35c3b3716370
[anna.git] / docker-images / anna-adml-http / Dockerfile
1 FROM nginx
2 COPY etc/ /etc
3 COPY opt/adml/ /opt/adml
4
5 RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y tshark
6
7 RUN apt-get update && apt-get install -y \
8    net-tools \
9    procps \
10    python3 \
11    python3-pip
12
13 RUN pip3 install xmltodict
14
15 COPY starter.sh /var/starter.sh
16
17 EXPOSE 8074
18 WORKDIR /opt/adml
19
20 #ENV TZ=Europe/Madrid
21
22 ENTRYPOINT ["sh", "/var/starter.sh"]
23 CMD []