aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/dcaegen2-services-son-handler/sonhandler/cps-sonhandler/Dockerfile
blob: 688a2fe0fe325737f401c04c5528cbb5d9eaa3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:alpine3.7

ADD configdb-oof-sim.py /

ADD ./sim-data /

RUN pip install Flask

RUN pip install requests

EXPOSE 5000

CMD ["flask", "run", "--host", "0.0.0.0"]

CMD [ "python", "./configdb-oof-sim.py" ]