Added support for encrypted connections in Dockerfile - added OpenSSL library

This commit is contained in:
krzotr 2019-04-04 18:39:27 +02:00 committed by GitHub
parent ba6a75f8d7
commit 27c47bb3bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ FROM alpine:3.8
ENV HOME /root
#Install ZeroNet
RUN apk --no-cache --no-progress add musl-dev gcc python python-dev py2-pip tor \
RUN apk --no-cache --no-progress add musl-dev gcc python python-dev py2-pip tor openssl \
&& pip install --no-cache-dir gevent msgpack \
&& apk del musl-dev gcc python-dev py2-pip \
&& echo "ControlPort 9051" >> /etc/tor/torrc \