Maint/rename pkg (#88)

* Rename trustgraph-utils -> trustgraph-cli
* Update YAMLs
This commit is contained in:
cybermaggedon 2024-09-30 22:20:26 +01:00 committed by GitHub
parent 771d9fc2c7
commit 88a7dfa126
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 361 additions and 361 deletions

View file

@ -34,7 +34,7 @@ COPY trustgraph-vertexai/ /root/build/trustgraph-vertexai/
COPY trustgraph-bedrock/ /root/build/trustgraph-bedrock/
COPY trustgraph-parquet/ /root/build/trustgraph-parquet/
COPY trustgraph-embeddings-hf/ /root/build/trustgraph-embeddings-hf/
COPY trustgraph-utils/ /root/build/trustgraph-utils/
COPY trustgraph-cli/ /root/build/trustgraph-cli/
WORKDIR /root/build/
@ -44,7 +44,7 @@ RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-vertexai/
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-bedrock/
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-parquet/
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-embeddings-hf/
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-utils/
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-cli/
RUN ls /root/wheels
@ -63,7 +63,7 @@ RUN \
pip3 install /root/wheels/trustgraph_bedrock-* && \
pip3 install /root/wheels/trustgraph_parquet-* && \
pip3 install /root/wheels/trustgraph_embeddings_hf-* && \
pip3 install /root/wheels/trustgraph_utils-* && \
pip3 install /root/wheels/trustgraph_cli-* && \
pip3 cache purge && \
rm -rf /root/wheels