1
0
mirror of https://github.com/daniviga/bite.git synced 2024-11-26 23:06:14 +01:00
bite/docker/simulators/Dockerfile.http
Daniele Viganò b6653c510d
Add a virtual EDGE which spawns http simulators (#8)
* Add dockerized python simulators

* Create an EDGE gateway via dind

* Fix README.md title
2020-06-03 19:26:35 +02:00

7 lines
163 B
HTTP

FROM python:3.8-alpine
RUN pip3 install urllib3
COPY ./simulator_http.py /opt/freedcs/simulator_http.py
ENTRYPOINT ["python3", "/opt/freedcs/simulator_http.py"]