summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rwxr-xr-xDockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100755
index 0000000..f036cfd
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,9 @@
+FROM nginx:alpine
+LABEL maintainer="Jeroen Pardon"
+
+RUN apk add nano
+
+RUN rm -rf /usr/share/nginx/html
+COPY . /usr/share/nginx/html
+
+EXPOSE 80 \ No newline at end of file