summaryrefslogtreecommitdiffstats
path: root/tests/dcaegen2/prh-testcases/resources/simulator/AAI_simulator
blob: 89a266ebe47b2a4f2de3096459c8ecb1c39378ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM alpine:3.8

RUN apk add --no-cache python3 && \
    python3 -m ensurepip && \
    rm -r /usr/lib/python*/ensurepip && \
    pip3 install --upgrade pip setuptools && \
    if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi && \
    if [[ ! -e /usr/bin/python ]]; then ln -sf /usr/bin/python3 /usr/bin/python; fi && \
	rm -r /root/.cache

ADD AAI.py /

EXPOSE 3333

CMD [ "python", "./AAI.py" ]