1
0
Fork 0
mirror of https://github.com/librenms/docker.git synced 2026-01-23 10:15:22 +00:00

Merge pull request #10 from jsenecal/patch-1

Fix for missing python-memcached on python2
This commit is contained in:
CrazyMax 2018-12-29 16:03:07 +01:00 committed by GitHub
commit bb6d4365e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,6 +63,8 @@ RUN apk --update --no-cache add \
php7-xml \
php7-zip \
py-mysqldb \
python \
py2-pip \
python3 \
rrdtool \
runit \
@ -73,6 +75,8 @@ RUN apk --update --no-cache add \
tzdata \
util-linux \
whois \
&& pip2 install --upgrade pip \
&& pip2 install python-memcached \
&& pip3 install --upgrade pip \
&& pip3 install python-memcached \
&& sed -i -e "s/;date\.timezone.*/date\.timezone = UTC/" /etc/php7/php.ini \