From 4078a0a3cb08d6a5e66295978324e54fa528cb43 Mon Sep 17 00:00:00 2001 From: s-heppner Date: Mon, 21 Oct 2024 08:57:47 +0200 Subject: [PATCH] Dockerfile: Change the path to the main Eclipse BaSyx Python SDK repository Previously, we used the `rwth-iat` fork to pull the SDK from, inside the docker file, due to the fact, that the `eclipse-basyx` repository, did not contain the necessary branch. Now that this is the case, it makes sense to always use the official repository. This also fixes the dependency issues of missing dependencies, as they have been fixed in the main repository. Fix #8 Fix #9 --- server/.gitignore | 4 ++++ server/Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/server/.gitignore b/server/.gitignore index 34ff768e..af40b724 100644 --- a/server/.gitignore +++ b/server/.gitignore @@ -1 +1,5 @@ +# Ignore the default AAS storage directory storage/ + +# Ignore PyCharm IDE configuration +.idea diff --git a/server/Dockerfile b/server/Dockerfile index 5361ad2c..7ed81b4d 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -8,7 +8,7 @@ ENV NGINX_MAX_UPLOAD 1M ENV UWSGI_CHEAPER 0 ENV UWSGI_PROCESSES 1 -RUN pip install --no-cache-dir git+https://github.com/rwth-iat/basyx-python-sdk@main +RUN pip install --no-cache-dir git+https://github.com/eclipse-basyx/basyx-python-sdk@main COPY ./app /app COPY ./nginx /etc/nginx/conf.d