Alpine Linux build of https://github.com/martinetd/matrirc
61
Build it yourself:
First clone https://github.com/martinetd/matrirc, then:
FROM rust:1.81-alpine3.20 AS builder
RUN apk add --no-cache build-base pkgconf openssl-dev ca-certificates sqlite-dev openssl-libs-static sqlite-dev sqlite-static
WORKDIR /src COPY . . RUN cargo build --release
FROM alpine:3.20 RUN apk add --no-cache ca-certificates openssl COPY --from=builder /src/target/release/matrirc /usr/local/bin/matrirc ENTRYPOINT ["matrirc"]
Content type
Image
Digest
sha256:60baccc1c…
Size
24.1 MB
Last updated
6 days ago
docker pull rdlmda/matrirc:0.1.0-alpine