Skip to content

Commit

Permalink
fix(misc): update binary name in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rudoi committed May 21, 2024
1 parent e602194 commit 6a2b0f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ RUN cargo build --release

RUN \
mkdir -p /build && \
cp target/${CARGO_BUILD_TARGET}/release/rudolfs /build/ && \
strip /build/rudolfs
cp target/${CARGO_BUILD_TARGET}/release/lfs-rs /build/ && \
strip /build/lfs-rs

# Use scratch so we can get an itty-bitty-teeny-tiny image. This requires us to
# use musl when building the application.
Expand All @@ -44,5 +44,5 @@ COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certifica

COPY --from=build /build/ /

ENTRYPOINT ["/tini", "--", "/rudolfs"]
ENTRYPOINT ["/tini", "--", "/lfs-rs"]
CMD ["--cache-dir", "/data"]

0 comments on commit 6a2b0f1

Please sign in to comment.