From 42e4be9775a954585beec3f366949f919a088edf Mon Sep 17 00:00:00 2001 From: Michael Thaler <michael.thaler@conesphere.com> Date: Wed, 27 Sep 2023 12:50:29 +0200 Subject: [PATCH] attempt fix for /cryptpad does not exist https://git.conesphere.cloud/conesphere/podman/hub/cryptpad/-/jobs/52093 --- Containerdir/Containerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Containerdir/Containerfile b/Containerdir/Containerfile index 950603c..c8a44a5 100644 --- a/Containerdir/Containerfile +++ b/Containerdir/Containerfile @@ -16,8 +16,9 @@ WORKDIR /cryptpad RUN git config --global url."https://".insteadOf git:// # Get cryptpad from repository submodule -RUN git clone --recurse-submodules --depth 1 --branch ${CRYPTPAD_VERSION} https://github.com/xwiki-labs/cryptpad.git /cryptpad - +RUN ls -la /cryptpad +RUN git clone --recurse-submodules --depth 1 --branch ${CRYPTPAD_VERSION} https://github.com/xwiki-labs/cryptpad.git +RUN ls -la /cryptpad RUN sed -i "s@//httpAddress: '::'@httpAddress: '0.0.0.0'@" /cryptpad/config/config.example.js # Install dependencies -- GitLab