mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-05-30 15:55:04 +08:00
13 lines
155 B
Docker
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
|