Skip to content

Commit

Permalink
Dockerfile: Change the path to the main Eclipse BaSyx Python SDK repo…
Browse files Browse the repository at this point in the history
…sitory

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
  • Loading branch information
s-heppner committed Nov 17, 2024
1 parent b957cd0 commit 351c95a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions server/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Ignore the default AAS storage directory
storage/

# Ignore PyCharm IDE configuration
.idea
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 351c95a

Please sign in to comment.