Skip to content

Commit

Permalink
correct bin (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
Iamdavidonuh authored Dec 2, 2024
1 parent fb9c2da commit dc88828
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ahnlich/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ COPY . /app/

# Build our project
RUN cargo build --release --bin ${AHNLICH_BIN}
RUN cargo build --release --bin ahnlich_cli
RUN cargo build --release --bin ahnlich-cli


FROM debian:bookworm-slim AS runtime
Expand All @@ -38,7 +38,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends openssl ca-cert


COPY --from=builder /app/target/release/${AHNLICH_BIN} /usr/local/bin/
COPY --from=builder /app/target/release/ahnlich_cli /usr/local/bin/
COPY --from=builder /app/target/release/ahnlich-cli /usr/local/bin/

ENV AHNLICH_BIN=${AHNLICH_BIN}

Expand Down

0 comments on commit dc88828

Please sign in to comment.