-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Frank Yang <yangpoan@gmail.com>
- Loading branch information
1 parent
9169642
commit e72438b
Showing
1 changed file
with
18 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM rust:1.61 as builder | ||
|
||
WORKDIR /app | ||
COPY . /app | ||
RUN cargo build --release --all-features --bin bindle-server | ||
RUN cargo build --release --features=cli --bin bindle | ||
|
||
FROM gcr.io/distroless/cc | ||
|
||
VOLUME [ "/bindle-data" ] | ||
|
||
ENV BINDLE_IP_ADDRESS_PORT="0.0.0.0:8080" | ||
ENV BINDLE_DIRECTORY="/bindle-data" | ||
|
||
COPY --from=builder /app/target/release/bindle-server / | ||
COPY --from=builder /app/target/release/bindle / | ||
|
||
CMD ["./bindle-server", "--unauthenticated"] |