From e65b33427144253e782a7879396f2db534e8f75b Mon Sep 17 00:00:00 2001 From: phil Date: Sat, 2 Nov 2024 03:56:53 +0100 Subject: [PATCH] Initial commit --- Containerfile.ci | 8 +++++++ Containerfile.trixie_python | 23 ++++++++++++++++++++ README.md | 2 ++ build_generic_images.yaml | 43 +++++++++++++++++++++++++++++++++++++ 4 files changed, 76 insertions(+) create mode 100644 Containerfile.ci create mode 100644 Containerfile.trixie_python create mode 100644 README.md create mode 100644 build_generic_images.yaml diff --git a/Containerfile.ci b/Containerfile.ci new file mode 100644 index 0000000..1606662 --- /dev/null +++ b/Containerfile.ci @@ -0,0 +1,8 @@ +# Build: podman build -t localhost/python-ci -f Containerfile.ci +FROM localhost/trixie_python + +RUN apt-get -y --no-install-recommends install nodejs git python3-pytest python3-httpx buildah podman && \ + apt-get clean && \ + rm -rf /var/lib/apt/listsd/* && \ + rm -rf /root/.cache + diff --git a/Containerfile.trixie_python b/Containerfile.trixie_python new file mode 100644 index 0000000..53d6c3c --- /dev/null +++ b/Containerfile.trixie_python @@ -0,0 +1,23 @@ +# Build: podman build -t trixie_python -f Containerfile.trixie_python + +FROM debian:trixie-slim + +RUN <