hyperledger-archives / indy-sdk

indy-sdk
https://wiki.hyperledger.org/display/indy
Apache License 2.0
666 stars 737 forks source link

Ubuntu 18.04 -apt repository does not have a release file #2554

Closed demos2022 closed 7 months ago

demos2022 commented 2 years ago

Hi, I am trying to run this demo locally in my Ubuntu system (version 18.04) and upon running the below command sudo add-apt-repository "deb https://repo.sovrin.org/sdk/deb bionic stable" , it throws an error. Attached is the error screenshot. Please assist. This seems to be similar to issue - https://github.com/hyperledger/indy-sdk/issues/2476. The issue is closed but I cannot seem to find a solution in that. Error

stockschlaeger commented 1 year ago

what device are you using?

WadeBarnes commented 1 year ago

A couple items to note for anyone having this issue.

Working Docker Example:

FROM ubuntu:18.04
RUN apt-get update -y && apt-get install -y \
    gnupg \
    software-properties-common \
    apt-transport-https \
    ca-certificates

RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88
RUN add-apt-repository "deb https://repo.sovrin.org/sdk/deb bionic stable"
RUN apt-get update -y && apt-get install -y \
    libindy