blob: 30d7be693d19862fde9b1363b65f7fa4657dc4fc (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|