c155c3ee5341db2adf7c938104ffaabed4700c58
[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    jq \
11    python3 \
12    python3-pip
13
14 RUN pip3 install xmltodict
15
16 COPY starter.sh /var/starter.sh
17
18 EXPOSE 8074
19 WORKDIR /opt/adml
20
21 #ENV TZ=Europe/Madrid
22
23 ENTRYPOINT ["sh", "/var/starter.sh"]
24 CMD []