Files
ca_injector/Dockerfile.ubuntu
T
Erik Hollensbe cd53a2b0fa Add ubuntu target
Signed-off-by: Erik Hollensbe <git@hollensbe.org>
2022-02-28 02:20:10 -08:00

15 lines
387 B
Docker

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