Skip to content

Commit

Permalink
feat: Dockerfile for asb
Browse files Browse the repository at this point in the history
  • Loading branch information
binarybaron authored Jul 16, 2024
1 parent 1f322b7 commit 60a3177
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM rust:1.74 AS builder

WORKDIR /build

RUN apt-get update
RUN apt-get install -y git clang cmake libsnappy-dev

RUN git clone https://github.com/comit-network/xmr-btc-swap .

RUN cargo build --release --bin=asb

FROM debian:bullseye-slim

WORKDIR /data

COPY --from=builder /build/target/release/asb /bin/asb

ENTRYPOINT ["asb"]

0 comments on commit 60a3177

Please sign in to comment.