From d8f07d0a5a12177d8ed3f07c9e87bc386111669d Mon Sep 17 00:00:00 2001 From: Einar Felipe Lanfranco Date: Wed, 4 Oct 2023 00:35:16 -0300 Subject: [PATCH] Update entrypoint-dev.sh I detected some wrong path, i fixed and i think this will fix https://github.com/certat/intelmq-docker/issues/20 --- .docker/intelmq-full-dev/entrypoint-dev.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.docker/intelmq-full-dev/entrypoint-dev.sh b/.docker/intelmq-full-dev/entrypoint-dev.sh index 1f514e7..5df21a4 100644 --- a/.docker/intelmq-full-dev/entrypoint-dev.sh +++ b/.docker/intelmq-full-dev/entrypoint-dev.sh @@ -24,7 +24,7 @@ fi if [[ $1 == "selftest" ]] then export INTELMQ_TEST_EXOTIC=1 - pytest-3 /etc/intelmq/intelmq/tests + pytest-3 /opt/intelmq/intelmq/tests else - cd /etc/intelmq-api && uvicorn intelmq_api.main:app --port 8080 --host 0.0.0.0 + cd /opt/intelmq-api && uvicorn intelmq_api.main:app --port 8080 --host 0.0.0.0 fi