ca_injector 0.1.2

Inject CAs into trust stores; port of mkcert to a library.
Documentation
1
2
3
4
5
6
7
8
9
10
# vim: ft=dockerfile

FROM debian:latest

RUN apt-get update -qq && apt-get install curl libnss3-tools build-essential libssl-dev pkg-config ca-certificates -y

COPY hack/rustup.sh /bin
RUN chmod 755 /bin/rustup.sh

CMD ["bash", "-c", "source /bin/rustup.sh && cd /root/ca_injector && cargo test -- --nocapture"]