From 27c47bb3bd194c0bef5557ff0a677de3c959c25e Mon Sep 17 00:00:00 2001 From: krzotr Date: Thu, 4 Apr 2019 18:39:27 +0200 Subject: [PATCH] Added support for encrypted connections in Dockerfile - added OpenSSL library --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7913cf1d..7fcd83ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \