forked from linuxserver/docker-dokuwiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.armhf
49 lines (45 loc) · 1.16 KB
/
Dockerfile.armhf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
FROM lsiobase/nginx:arm32v7-3.9
# set version label
ARG BUILD_DATE
ARG VERSION
ARG DOKUWIKI_RELEASE
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="chbmb"
RUN \
echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \
tar \
xmlstarlet && \
echo "**** install runtime packages ****" && \
apk add --no-cache \
curl \
imagemagick \
php7-bz2 \
php7-gd \
php7-xml \
php7-zip && \
echo "**** install dokuwiki ****" && \
if [ -z ${DOKUWIKI_RELEASE+x} ]; then \
DOKUWIKI_RELEASE=$(wget https://download.dokuwiki.org/rss -O - 2>/dev/null | \
xmlstarlet sel -T -t -v '/rss/channel/item[1]/link' | \
cut -d'-' -f2-4 | cut -d'.' -f1 ); \
fi && \
curl -o \
/tmp/dokuwiki.tar.gz -L \
"https://github.com/splitbrain/dokuwiki/archive/release_stable_${DOKUWIKI_RELEASE}.tar.gz" && \
mkdir -p \
/app/dokuwiki && \
tar xf \
/tmp/dokuwiki.tar.gz -C \
/app/dokuwiki --strip-components=1 && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
rm -rf \
/root/.cache \
/tmp/*
# copy local files
COPY root/ /
# ports and volumes
EXPOSE 80 443
VOLUME /config