Skip to content
Snippets Groups Projects
Unverified Commit 58e5b81c authored by Ian Costanzo's avatar Ian Costanzo Committed by GitHub
Browse files

Merge branch 'main' into demo-instruction-updates

parents 4eba244f 73f4f467
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,11 @@ RUN chmod -R ug+rw $HOME/log $HOME/ledger $HOME/.aries_cloudagent $HOME/.cache
COPY --from=build /src/dist/aries_cloudagent*.whl .
RUN pip install --no-cache-dir --find-links=. aries_cloudagent${acapy_reqs} && rm aries_cloudagent*.whl
# Install ACA-py from the wheel.
RUN aries_cloudagent_package=$(find ./ -name "aries_cloudagent*.whl" | head -n 1) && \
echo "Installing ${aries_cloudagent_package} ..." && \
pip install --no-cache-dir --find-links=. ${aries_cloudagent_package}${acapy_reqs} && \
rm aries_cloudagent*.whl
# Clean-up unneccessary build dependencies and reduce final image size
RUN apt-get purge -y --auto-remove build-essential
......
......@@ -256,7 +256,11 @@ RUN chmod -R ug+rw $HOME/.aries_cloudagent
COPY --from=acapy-builder /src/dist/aries_cloudagent*.whl .
RUN pip install --no-cache-dir --find-links=. aries_cloudagent${acapy_reqs} && rm aries_cloudagent*.whl
# Install ACA-py from the wheel.
RUN aries_cloudagent_package=$(find ./ -name "aries_cloudagent*.whl" | head -n 1) && \
echo "Installing ${aries_cloudagent_package} ..." && \
pip install --no-cache-dir --find-links=. ${aries_cloudagent_package}${acapy_reqs} && \
rm aries_cloudagent*.whl
# Clean-up unneccessary build dependencies and reduce final image size
# RUN apt-get purge -y --auto-remove build-essential
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment