mirror of
https://github.com/librenms/docker.git
synced 2026-07-20 16:56:14 +00:00
Fix poller-wrapper
This commit is contained in:
parent
617a41f05b
commit
7bd652f10a
2 changed files with 14 additions and 2 deletions
|
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
## 1.63-RC2 (2020/05/08)
|
||||
|
||||
* Fix poller-wrapper
|
||||
|
||||
## 1.63-RC1 (2020/05/08)
|
||||
|
||||
* LibreNMS 1.63
|
||||
|
|
|
|||
12
Dockerfile
12
Dockerfile
|
|
@ -77,12 +77,20 @@ RUN apk --update --no-cache add \
|
|||
tzdata \
|
||||
util-linux \
|
||||
whois \
|
||||
&& apk --update --no-cache add -t build-dependencies \
|
||||
gcc \
|
||||
make \
|
||||
mariadb-dev \
|
||||
musl-dev \
|
||||
python-dev \
|
||||
python3-dev \
|
||||
&& pip2 install --upgrade pip \
|
||||
&& pip2 install python-memcached \
|
||||
&& pip2 install python-memcached mysqlclient \
|
||||
&& pip3 install --upgrade pip \
|
||||
&& pip3 install python-memcached \
|
||||
&& pip3 install python-memcached mysqlclient \
|
||||
&& wget -q "https://github.com/just-containers/s6-overlay/releases/latest/download/s6-overlay-amd64.tar.gz" -qO "/tmp/s6-overlay-amd64.tar.gz" \
|
||||
&& tar xzf /tmp/s6-overlay-amd64.tar.gz -C / \
|
||||
&& apk del build-dependencies \
|
||||
&& rm -rf /var/cache/apk/* /var/www/* /tmp/* \
|
||||
&& setcap cap_net_raw+ep /usr/bin/nmap \
|
||||
&& setcap cap_net_raw+ep /usr/sbin/fping
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue