From 526e539befb3831a1a2cacdd4a6269845fae0afc Mon Sep 17 00:00:00 2001 From: s-heppner Date: Wed, 11 Sep 2024 09:27:18 +0200 Subject: [PATCH] Fix directory in Dockerfile Previously, a wrong directory for `service.py` was specified in the Dockerfile. This fixes this problem. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3882d9a..f87d929 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,4 +20,4 @@ ENV PYTHONPATH=/app EXPOSE 8125 # Command to run the FastAPI server -CMD ["python", "resolver_modules/service.py"] +CMD ["python", "semantic_id_resolver/service.py"]