-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lucas ONeil <[email protected]>
- Loading branch information
Showing
5 changed files
with
710 additions
and
582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.0 AS base | ||
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.1 AS base | ||
|
||
# Install and Configure Poetry | ||
USER root | ||
|
@@ -24,16 +24,16 @@ RUN poetry install --only main | |
RUN ln -s $(poetry env info -p)/lib/python3.6/site-packages site-packages | ||
|
||
|
||
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.0 | ||
FROM ghcr.io/hyperledger/aries-cloudagent-python:py3.12-1.0.1 | ||
COPY --from=base --chown=aries:aries /home/aries/.venv /home/aries/.venv | ||
ENV PATH="/home/aries/.venv/bin:$PATH" | ||
|
||
COPY --chown=aries:aries docker/default.yml ./ | ||
COPY --chown=aries:aries traction_innkeeper/traction_innkeeper traction_plugins/traction_innkeeper | ||
RUN pip install git+https://github.com/hyperledger/[email protected].0#subdirectory=basicmessage_storage | ||
RUN pip install git+https://github.com/hyperledger/[email protected].0#subdirectory=connection_update | ||
RUN pip install git+https://github.com/hyperledger/[email protected].0#subdirectory=multitenant_provider | ||
RUN pip install git+https://github.com/hyperledger/[email protected].0#subdirectory=rpc | ||
RUN pip install git+https://github.com/hyperledger/[email protected].1#subdirectory=basicmessage_storage | ||
RUN pip install git+https://github.com/hyperledger/[email protected].1#subdirectory=connection_update | ||
RUN pip install git+https://github.com/hyperledger/[email protected].1#subdirectory=multitenant_provider | ||
RUN pip install git+https://github.com/hyperledger/[email protected].1#subdirectory=rpc | ||
|
||
|
||
ENTRYPOINT ["/bin/bash", "-c", "aca-py \"$@\"", "--"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.