From 9ea25cf3fc3997625eeef5c02b4bde27de672401 Mon Sep 17 00:00:00 2001 From: Luis Miguel Vicente Fuentes Date: Sat, 12 Sep 2020 14:16:26 +0200 Subject: [PATCH] Update monit version from 5.26.0 to 5.27.0 --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index cb8f2bd..cf9c7fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,13 @@ FROM alpine:3.8 LABEL maintainer="Luis Miguel Vicente Fuentes " # monit environment variables -ENV MONIT_VERSION=5.26.0 \ +ENV MONIT_VERSION=5.27.0 \ MONIT_HOME=/opt/monit \ MONIT_URL=https://mmonit.com/monit/dist \ PATH=$PATH:/opt/monit/bin -# Compile and install monit +# compile and install monit RUN \ - echo "*** compile and install monit ***" && \ apk add --update gcc musl-dev make libressl-dev file zlib-dev && \ mkdir -p /opt/src; cd /opt/src && \ wget -qO- ${MONIT_URL}/monit-${MONIT_VERSION}.tar.gz | tar xz && \