feeless 0.1.9

A Nano (cryptocurrency) node and utilities such as nano addresses, hashing blocks, signing, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:1.51.0-slim as build

WORKDIR /feeless
COPY . .
RUN cargo build --release

FROM debian:buster-slim
COPY --from=build /feeless/target/release/feeless /usr/bin/feeless

# Do not run as root, do not allow a shell
RUN groupadd -g 7075 feeless
RUN useradd -g 7075 -l -M -s /bin/false -u 7075 feeless
USER feeless

ENTRYPOINT ["/usr/bin/feeless"]