mirror of
https://github.com/daniviga/bite.git
synced 2024-11-26 23:06:14 +01:00
7 lines
163 B
Docker
7 lines
163 B
Docker
|
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"]
|