bitomc 0.1.4

BitOMC wallet and indexer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:1.76.0-bookworm as builder

WORKDIR /usr/src/bitomc

COPY . .

RUN cargo build --bin bitomc --release

FROM debian:bookworm-slim

COPY --from=builder /usr/src/bitomc/target/release/bitomc /usr/local/bin
RUN apt-get update && apt-get install -y openssl

ENV RUST_BACKTRACE=1
ENV RUST_LOG=info