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 14, 2022
1 parent 9169642 commit e72438b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
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"]

0 comments on commit e72438b

Please sign in to comment.