We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4968557 commit b357caaCopy full SHA for b357caa
Dockerfile
@@ -22,6 +22,11 @@ RUN \
22
curl \
23
python3 \
24
py3-pip && \
25
+ echo "**** install monit ****" && \
26
+ if [ -z ${APP_VERSION+x} ]; then \
27
+ APP_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
28
+ && awk '/^P:'"monit"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
29
+ fi && \
30
apk add -U --upgrade --no-cache \
31
monit==${APP_VERSION} && \
32
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ \
0 commit comments