aocleaderboard 0.5.0

Merge multiple Advent of Code leaderboards
1
2
3
4
5
6
7
8
9
10
11
FROM rust

RUN rustup default nightly && rustup update
RUN apt install libssl-dev pkg-config

# Make sure to have a settings.toml
COPY ./ ./
RUN cargo build --release

RUN chmod +x ./target/release/aocleaderboard
ENTRYPOINT [ "target/release/aocleaderboard" ]