Skip to content

Commit

Permalink
fixed the crate install path
Browse files Browse the repository at this point in the history
  • Loading branch information
huuff committed Jul 20, 2024
1 parent 320b578 commit d7bacc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG DEBIAN_DIST=bullseye
FROM rust:${DEBIAN_DIST} as builder
WORKDIR /usr/src/typos
COPY . .
RUN cargo install --path .
RUN cargo install --path ./crates/typos-cli

FROM debian:${DEBIAN_DIST}-slim
COPY --from=builder /usr/local/cargo/bin/typos /usr/local/bin/typos
Expand Down

0 comments on commit d7bacc4

Please sign in to comment.