-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c11c639
commit 25e09f2
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM rust:latest as builder | ||
FROM rust:bookworm as builder | ||
Check warning on line 1 in Dockerfile GitHub Actions / build (ubuntu-latest-16-cores, linux/amd64)The 'as' keyword should match the case of the 'from' keyword
|
||
WORKDIR /wd | ||
COPY . . | ||
RUN cargo install --locked --path cmd/stellar-cli --bin stellar --features opt | ||
|
||
FROM debian:latest | ||
FROM gcr.io/distroless/cc-debian12:latest | ||
COPY --from=builder /usr/local/cargo/bin/stellar /usr/local/bin/stellar | ||
ENTRYPOINT ["stellar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters