diff --git a/multi-stage/Dockerfile b/multi-stage/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..6662b229ff62c5c48d394505656b39fbdb645b52 --- /dev/null +++ b/multi-stage/Dockerfile @@ -0,0 +1,9 @@ +FROM pandoc/core as pandoc + +COPY demo_pandoc.docx /data + +RUN pandoc -s demo_pandoc.docx -o index.html + +FROM nginx as webserver + +COPY --from=pandoc /data /usr/share/nginx/html diff --git a/multi-stage/demo_pandoc.docx b/multi-stage/demo_pandoc.docx new file mode 100644 index 0000000000000000000000000000000000000000..0d64b3580635404cfc4f6e4441b04b0646d229dd Binary files /dev/null and b/multi-stage/demo_pandoc.docx differ