From 99131b7f0a3be5b091680ee6b102111b414c8a40 Mon Sep 17 00:00:00 2001 From: Jeremy Likness Date: Mon, 25 Nov 2019 10:51:14 -0800 Subject: [PATCH] Add lightweight Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c6e6e06 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM busybox:latest + +RUN mkdir /app +COPY index.html /app +COPY css/ /app/css/ +COPY images/ /app/images/ +COPY js/ /app/js/ +COPY slides/ /app/slides/ +COPY templates/ /app/templates +EXPOSE 80 +CMD ["httpd", "-f", "-p", "80", "-h", "/app"]