Created
February 4, 2022 14:25
-
-
Save WadeBarnes/c0ec30be1040ade584489ba4f7b91e23 to your computer and use it in GitHub Desktop.
Install libindy on Ubuntu 18.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:18.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