advent-of-code 2019.12.113

Solutions to Advent of Code
Documentation
FROM fredrikfornwall/rust-static-builder:latest
ADD . /build/
RUN /root/build.sh
RUN ls -lha /build/target/x86_64-unknown-linux-musl
RUN ls -lha /build/target/x86_64-unknown-linux-musl/release/

FROM scratch
COPY --from=0 /build/target/x86_64-unknown-linux-musl/release/advent-of-code /
ENTRYPOINT ["/advent-of-code"]