diff options
| author | Vosjedev <vosje@vosjedev.net> | 2025-11-02 18:23:03 +0100 |
|---|---|---|
| committer | Vosjedev <vosje@vosjedev.net> | 2025-11-02 18:23:03 +0100 |
| commit | bf6f03393a04ebfebe267031124e05eca260fa13 (patch) | |
| tree | de7dd280ca402912a27d558026f0f8d416a98c5d /Dockerfile | |
| parent | 2056fbb3f8226822b76959c43588d1f4dfa8cfb0 (diff) | |
| download | acit-bf6f03393a04ebfebe267031124e05eca260fa13.tar.gz acit-bf6f03393a04ebfebe267031124e05eca260fa13.tar.bz2 acit-bf6f03393a04ebfebe267031124e05eca260fa13.tar.xz | |
Add docker capabilities
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
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 + + |
