This repository has been archived on 2026-07-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2017-10-31 13:30:28 +00:00
|
|
|
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
|