Skip to content

Commit d7bacc4

Browse files
committed
fixed the crate install path
1 parent 320b578 commit d7bacc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG DEBIAN_DIST=bullseye
33
FROM rust:${DEBIAN_DIST} as builder
44
WORKDIR /usr/src/typos
55
COPY . .
6-
RUN cargo install --path .
6+
RUN cargo install --path ./crates/typos-cli
77

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

0 commit comments

Comments
 (0)