mirror of
https://github.com/zerotier/ca_injector.git
synced 2026-05-22 16:27:33 -07:00
11 lines
313 B
Docker
11 lines
313 B
Docker
# 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"]
|