mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
8 lines
194 B
Docker
8 lines
194 B
Docker
FROM rust:1.65.0 as builder
|
|
WORKDIR /usr/src/typos
|
|
COPY . .
|
|
RUN cargo install --path .
|
|
|
|
FROM debian:buster-slim
|
|
COPY --from=builder /usr/local/cargo/bin/typos /usr/local/bin/typos
|
|
CMD ["typos"]
|