fakedate 0.1.2-619366e

fakedate generates pseudo-random dates and times.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:1-alpine

MAINTAINER Christian Mauduit "ufoot@ufoot.org"
LABEL package="fakedate" version="0.1.2" description="fakedate generates pseudo-random dates and times."

ADD ./ /wk/
WORKDIR /wk/
RUN cargo build --release
RUN cp /wk/target/release/fakedate /

USER nobody
ENTRYPOINT ["/fakedate"]