Skip to content

Commit

Permalink
feat: add Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Yang <yangpoan@gmail.com>
  • Loading branch information
FrankYang0529 committed Sep 17, 2022
1 parent 9169642 commit b69770a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM rust:1.61 as builder

WORKDIR /app
COPY . /app
RUN cargo build --release --all-features --bin bindle-server

FROM gcr.io/distroless/cc

VOLUME [ "/bindle-data" ]

ENV BINDLE_IP_ADDRESS_PORT="0.0.0.0:8080"
ENV BINDLE_DIRECTORY="/bindle-data/bindles"

COPY --from=builder /app/target/release/bindle-server /

CMD ["./bindle-server", "--unauthenticated", "--keyring", "/bindle-data/keyring.toml"]

0 comments on commit b69770a

Please sign in to comment.