mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-18 01:31:02 +02:00
Bedrock and VertexAI
This commit is contained in:
parent
dc45babbb9
commit
e0866d9f92
14 changed files with 212 additions and 4 deletions
|
|
@ -34,6 +34,12 @@ COPY README.md /root/build/trustgraph-base/
|
|||
COPY trustgraph-flow/ /root/build/trustgraph-flow/
|
||||
COPY README.md /root/build/trustgraph-flow/
|
||||
|
||||
COPY trustgraph-vertexai/ /root/build/trustgraph-vertexai/
|
||||
COPY README.md /root/build/trustgraph-vertexai/
|
||||
|
||||
COPY trustgraph-bedrock/ /root/build/trustgraph-bedrock/
|
||||
COPY README.md /root/build/trustgraph-bedrock/
|
||||
|
||||
COPY trustgraph-embeddings-hf/ /root/build/trustgraph-embeddings-hf/
|
||||
COPY README.md /root/build/trustgraph-embeddings-hf/
|
||||
|
||||
|
|
@ -41,6 +47,8 @@ WORKDIR /root/build/
|
|||
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-base/
|
||||
RUN pip3 wheel -w /root/wheels/ --no-deps ./trustgraph-flow/
|
||||
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-embeddings-hf/
|
||||
|
||||
RUN ls /root/wheels
|
||||
|
|
@ -56,6 +64,8 @@ COPY --from=build /root/wheels /root/wheels
|
|||
RUN \
|
||||
pip3 install /root/wheels/trustgraph_base-* && \
|
||||
pip3 install /root/wheels/trustgraph_flow-* && \
|
||||
pip3 install /root/wheels/trustgraph_vertexai-* && \
|
||||
pip3 install /root/wheels/trustgraph_bedrock-* && \
|
||||
pip3 install /root/wheels/trustgraph_embeddings_hf-* && \
|
||||
pip3 cache purge && \
|
||||
rm -rf /root/wheels
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue