diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2a112e9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM php:apache + +USER www-data +RUN curl -L "https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz" | tar -zx --strip=1 +USER root + +HEALTHCHECK --interval=10s \ + CMD curl --fail "http://localhost" || exit 1 \ No newline at end of file