Files
stacks-puppet-node/.github/actions/bitcoin-int-tests/Dockerfile.rustfmt
2020-09-28 13:16:15 -05:00

13 lines
155 B
Docker

FROM rust:buster
WORKDIR /src
COPY ./rust-toolchain .
COPY ./Cargo.toml .
RUN rustup component add rustfmt
COPY . .
RUN cargo fmt --all -q -- --check