advent-of-code 2019.12.321

Solutions to Advent of Code
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM fredrikfornwall/rust-static-builder:latest
ADD . /build/
RUN sed -i"" 's/visualization =/#/' /build/Cargo.toml
RUN sed -i"" 's/advent-of-code-painter =/#/' /build/Cargo.toml
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"]