sandcastle-ng

Scripts for the deployment of Sandcastle (GNU Taler)
Log | Files | Refs | README

commit 2f6fe86e2948c50de4b2e2e82368079568ceddc6
parent e6c74d4af2edfca70bb0945695a66ecebf9cdb47
Author: Devan Carpenter <devan@taler.net>
Date:   Sat, 17 Feb 2024 12:07:29 -0500

ci: we need git in the image now

Diffstat:
Mcontrib/ci/Containerfile | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile @@ -7,6 +7,11 @@ RUN tar -xvzf /tmp/podman-remote-static.tar.gz -C /usr/bin/ && \ rm -f /tmp/podman-remote-static.tar.gz && \ ln -s /usr/bin/podman-remote-static /usr/bin/podman +RUN apt-get update && \ + apt-get install -yq \ + git \ +&& rm -rf /var/lib/apt/lists/* + WORKDIR /workdir CMD ["/usr/bin/bash"]