| 1 | FROM docker.io/alpine:3.23 |
| 2 | |
| 3 | RUN apk add \ |
| 4 | cargo rust rustfmt rust-clippy \ |
| 5 | pkgconf build-base git sqlite sqlite-dev \ |
| 6 | scdoc |
| 7 | RUN adduser -D -h /src -s /bin/sh ayllu |
| 8 | USER ayllu |
| 9 | WORKDIR /src |
| 1 | FROM docker.io/alpine:3.23 |
| 2 | |
| 3 | RUN apk add \ |
| 4 | cargo rust rustfmt rust-clippy \ |
| 5 | pkgconf build-base git sqlite sqlite-dev \ |
| 6 | scdoc |
| 7 | RUN adduser -D -h /src -s /bin/sh ayllu |
| 8 | USER ayllu |
| 9 | WORKDIR /src |