entropycli 1.0.10

Entropy CLI for developing using the Entropic Labs Entropy Beacon
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:slim

RUN apt-get update && apt-get install -y libssl-dev pkg-config

WORKDIR /usr/src/entropy_worker
COPY . .
RUN cargo install --path .

RUN mkdir /data
WORKDIR /data

CMD ["entropy", "worker", "start"]