From bf6f03393a04ebfebe267031124e05eca260fa13 Mon Sep 17 00:00:00 2001 From: Vosjedev Date: Sun, 2 Nov 2025 18:23:03 +0100 Subject: Add docker capabilities --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..30d7be6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM alpine:3.22 + +RUN apk add python3 py3-pip + +RUN apk add build-base mariadb-connector-c-dev python3-dev + +COPY ./example-acit-list-projects.sh /usr/lib/acit-list-trackers + +RUN --mount=type=bind,source=.,target=/build \ + cd /build && pip install --break-system-packages --root-user-action ignore . + +CMD acit-web + + -- cgit