Skip to content

Instantly share code, notes, and snippets.

@WadeBarnes
Created February 4, 2022 14:27
Show Gist options
  • Save WadeBarnes/96a82751b0f5bfe5ac130a972e1edd60 to your computer and use it in GitHub Desktop.
Save WadeBarnes/96a82751b0f5bfe5ac130a972e1edd60 to your computer and use it in GitHub Desktop.
Install libindy on Ubuntu 20.04
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