16 lines
272 B
Docker
16 lines
272 B
Docker
FROM rust:latest AS builder
|
|
|
|
WORKDIR /root
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build --release
|
|
|
|
FROM debian:stable-slim
|
|
|
|
RUN apt update && apt install -y ca-certificates openssl && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=builder /root/target/release/tlsa /root/tlsa
|
|
|
|
CMD ["/root/tlsa"]
|