Merge "Add k8s yml file for oru application"
[nonrtric.git] / test / usecases / oruclosedlooprecovery / scriptversion / simulators / Dockerfile-sdnr-sim
index 103c97c..4275b17 100644 (file)
@@ -22,6 +22,11 @@ COPY . /usr/src/app/
 
 WORKDIR /usr/src/app
 
+## install curl & ping to help debug
+RUN apt update
+RUN apt install curl -y
+RUN apt-get install iputils-ping -y
+
 RUN pip install -r requirements.txt
 
-CMD [ "python3", "sdnr_simulator.py" ]
+CMD [ "python3", "-u", "sdnr_simulator.py" ]