From ca3dd069cefe7092856ad4f202e726e6a4cd0c66 Mon Sep 17 00:00:00 2001 From: Sebastian Schmittner Date: Wed, 21 Sep 2022 11:11:18 +0200 Subject: [PATCH 1/2] podman back into controller Signed-off-by: Sebastian Schmittner --- controller/Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/controller/Dockerfile b/controller/Dockerfile index 3d96d55..d1243c3 100644 --- a/controller/Dockerfile +++ b/controller/Dockerfile @@ -13,16 +13,20 @@ RUN apt-get update -y && apt-get install -y \ libbz2-dev \ zlib1g-dev \ librocksdb-dev \ - python3.6 \ + python3.5 \ python3-pip \ docker.io RUN pip3 install -U \ 'pip<10.0.0' \ 'setuptools<58.0' +RUN pip install python3-indy indy-node==1.12.6 + +# https://podman.io/getting-started/installation#installing-on-linux +# > CAUTION: The Kubic repo is NOT recommended for production use. RUN echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_18.04/ /" | tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list RUN apt-key adv --fetch-keys https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_18.04/Release.key -RUN pip install python3-indy indy-node==1.12.6 +RUN apt-get update -y && apt-get install -y podman RUN mkdir /opt/controller From 20dd2c0ae591cabb5f9affdc471101f9877b8621 Mon Sep 17 00:00:00 2001 From: Sebastian Schmittner Date: Fri, 14 Oct 2022 09:35:10 +0200 Subject: [PATCH 2/2] Update controller/Dockerfile Co-authored-by: Christian Bormann Signed-off-by: Sebastian Schmittner --- controller/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/Dockerfile b/controller/Dockerfile index d1243c3..d1e3f17 100644 --- a/controller/Dockerfile +++ b/controller/Dockerfile @@ -19,7 +19,7 @@ RUN apt-get update -y && apt-get install -y \ RUN pip3 install -U \ 'pip<10.0.0' \ 'setuptools<58.0' -RUN pip install python3-indy indy-node==1.12.6 +RUN pip3 install python3-indy indy-node==1.12.6 # https://podman.io/getting-started/installation#installing-on-linux