commit
6c54873ca2
34 changed files with 5502 additions and 0 deletions
17
Dockerfile
Normal file
17
Dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
|||
FROM rust:buster as builder
|
||||
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
RUN cargo build --release
|
||||
|
||||
FROM debian:buster
|
||||
|
||||
RUN apt update && apt upgrade -y
|
||||
RUN apt install -y ca-certificates openssl
|
||||
|
||||
COPY --from=builder /app/target/release/owl /owl
|
||||
|
||||
WORKDIR /
|
||||
|
||||
CMD ["/owl"]
|
Loading…
Add table
Add a link
Reference in a new issue