diff options
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 + + |
