12 lines
292 B
Docker
12 lines
292 B
Docker
FROM rust:latest
|
|
|
|
# Install Rust nightly toolchain
|
|
RUN rustup toolchain install nightly && \
|
|
rustup default nightly
|
|
|
|
# Install cargo-aoc from specific GitHub repository
|
|
RUN cargo install --git https://github.com/ggriffiniii/cargo-aoc cargo-aoc
|
|
|
|
# Set working directory
|
|
WORKDIR /workspace
|