Prepare new endpoints for csit/vid internal api
[integration/csit.git] / tests / vid / resources / simulators / Dockerfile
1 FROM python:3-alpine3.9
2
3 # `component` should be `so` or `aai`
4 ARG component
5 ENV component=$component
6
7 COPY SO.py /
8 RUN mkdir test_data_assets
9 ADD ./test_data_assets/ /test_data_assets
10
11 EXPOSE 8443
12
13 CMD python ./SO.py /test_data_assets/expected_${component}_requests.json /test_data_assets/expected_${component}_responses.json