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
11
12
13
14
# vim: ft=dockerfile

FROM ubuntu:latest

ENV TZ=Etc/PST8PDT

RUN ln -s /usr/share/zoneinfo/PST8PDT /etc/localtime

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"]