From 307071e1b0d536abbec277764b427d145d4f42b7 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Tue, 24 Feb 2015 19:26:21 +0100 Subject: Add packaging and examples. --- examples/docker-minimal-separate/frontend/Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 examples/docker-minimal-separate/frontend/Dockerfile (limited to 'examples/docker-minimal-separate/frontend/Dockerfile') diff --git a/examples/docker-minimal-separate/frontend/Dockerfile b/examples/docker-minimal-separate/frontend/Dockerfile new file mode 100644 index 0000000..d5391b9 --- /dev/null +++ b/examples/docker-minimal-separate/frontend/Dockerfile @@ -0,0 +1,13 @@ +FROM catlfish + +ADD logkey/eckey.pem logkey/eckey-public.pem /opt/plop/test/ +ADD catlfish.config /opt/catlfish/rel/ +ADD known_roots /opt/catlfish/rel/known_roots +ADD https /opt/catlfish/rel/https +RUN mkdir /opt/catlfish/rel/log + +WORKDIR /opt/catlfish/rel +EXPOSE 8080 +EXPOSE 8082 + +CMD ["/usr/bin/supervisord"] -- cgit v1.1