charms 0.5.2

Enchant Bitcoin with your own spells ✨
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust AS base
WORKDIR /app

FROM base AS builder
COPY . .
RUN cargo install --locked --path . --bin charms

FROM ubuntu AS runtime
COPY --from=builder /usr/local/cargo/bin/charms /usr/local/bin
CMD ["charms", "server"]