summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xDockerfile12
1 files changed, 7 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index f036cfd..0193116 100755
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,11 @@
-FROM nginx:alpine
+FROM busybox
+
LABEL maintainer="Jeroen Pardon"
-RUN apk add nano
+WORKDIR /opt/html
+
+COPY . /opt/html
-RUN rm -rf /usr/share/nginx/html
-COPY . /usr/share/nginx/html
+EXPOSE 80
-EXPOSE 80 \ No newline at end of file
+ENTRYPOINT [ "httpd", "-f", "-v", "-u", "1000" ]