-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
74 lines (66 loc) · 2.23 KB
/
Dockerfile
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
ARG BASE_IMAGE_TAG
FROM wodby/php:${BASE_IMAGE_TAG}
ARG MATOMO_VER
ENV APP_NAME="Matomo" \
MATOMO_VER="${MATOMO_VER}" \
\
PHP_ALWAYS_POPULATE_RAW_POST_DATA="1" \
PHP_GEOIP_CUSTOM_DIR="/var/www/html/misc" \
PHP_ERROR_REPORTING="E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED"
USER root
COPY geolite /tmp/geolite
RUN set -ex; \
\
apk add --no-cache -t .matomo-build-deps gnupg; \
\
# Download and verify matomo.
curl -o /tmp/matomo.tar.gz -Ls "https://builds.matomo.org/matomo-"${MATOMO_VER}".tar.gz"; \
curl -o /tmp/matomo.tar.gz.asc -Ls "https://builds.matomo.org/matomo-"${MATOMO_VER}".tar.gz.asc"; \
GPG_KEYS=F529A27008477483777FC23D63BB30D0E5D2C749 gpg_verify /tmp/matomo.tar.gz.asc /tmp/matomo.tar.gz; \
\
mkdir -p /usr/src/matomo; \
tar zxf /tmp/matomo.tar.gz --strip-components=1 -C /usr/src/matomo; \
mv /tmp/geolite /usr/src/matomo/misc; \
gunzip /usr/src/matomo/misc/geolite/GeoLite2-City.mmdb.gz; \
mv /usr/src/matomo/misc/geolite/GeoLite2-City.mmdb /usr/src/matomo/misc/; \
rm -rf /usr/src/matomo/misc/geolite; \
\
echo "$(cat /etc/sudoers.d/wodby), /usr/local/bin/init" > /etc/sudoers.d/wodby; \
\
mkdir -p \
/usr/src/matomo/tmp/assets \
/usr/src/matomo/tmp/cache \
/usr/src/matomo/tmp/cache/tracker \
/usr/src/matomo/tmp/climulti \
/usr/src/matomo/tmp/latest \
/usr/src/matomo/tmp/logs \
/usr/src/matomo/tmp/sessions \
/usr/src/matomo/tmp/tcpdf \
/usr/src/matomo/tmp/templates_c; \
\
chown -R wodby:wodby /usr/src/matomo; \
\
chown :www-data \
/usr/src/matomo/misc/user \
/usr/src/matomo/config \
/usr/src/matomo/piwik.js; \
chmod 775 \
/usr/src/matomo/misc/user \
/usr/src/matomo/config \
/usr/src/matomo/piwik.js; \
\
chown -R :www-data \
/usr/src/matomo/tmp \
/usr/src/matomo/plugins; \
chmod -R 775 \
/usr/src/matomo/tmp \
/usr/src/matomo/plugins; \
\
mv /usr/local/bin/actions.mk /usr/local/bin/php.mk; \
\
apk del --purge .matomo-build-deps; \
rm -rf /tmp/*; \
rm -rf /var/cache/apk/*
USER wodby
COPY init /docker-entrypoint-init.d/
COPY bin /usr/local/bin/