summaryrefslogtreecommitdiff
path: root/examples/docker-minimal-separate/frontend/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/docker-minimal-separate/frontend/Dockerfile')
-rw-r--r--examples/docker-minimal-separate/frontend/Dockerfile13
1 files changed, 13 insertions, 0 deletions
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"]