httplz-docker/Dockerfile
2023-09-21 13:02:27 +02:00

13 lines
314 B
Docker

FROM rust:alpine as builder
# openssl not found -> openssl and openssl-dev
# #include <stdlib.h> -> musl-dev
RUN apk add musl-dev libressl-dev
# --root dir: Directory to install packages into.
RUN cargo install --root /build --bin httplz https
FROM alpine
COPY --from=builder /build/bin/httplz /bin/httplz