mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
02ceb04147
`rust:1.65.0` is based on Bullseye, and at time of writing the binary built on it does not work on Buster: ``` $ docker build -t typos . && docker run --rm -it typos typos -V typos: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.29' not found (required by typos) ```
8 lines
196 B
Docker
8 lines
196 B
Docker
FROM rust:1.65.0 as builder
|
|
WORKDIR /usr/src/typos
|
|
COPY . .
|
|
RUN cargo install --path .
|
|
|
|
FROM debian:bullseye-slim
|
|
COPY --from=builder /usr/local/cargo/bin/typos /usr/local/bin/typos
|
|
CMD ["typos"]
|