Created
February 4, 2022 14:27
-
-
Save WadeBarnes/96a82751b0f5bfe5ac130a972e1edd60 to your computer and use it in GitHub Desktop.
Install libindy on Ubuntu 20.04
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
FROM ubuntu:20.04 | |
RUN apt-get update -y && apt-get install -y \ | |
gnupg \ | |
ca-certificates | |
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88 | |
RUN echo "deb https://repo.sovrin.org/sdk/deb bionic stable" >> /etc/apt/sources.list | |
RUN apt-get update -y && apt-get install -y \ | |
libindy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment