From f21d625ae246ccebff7e6ee62ff7c44e5a859fa2 Mon Sep 17 00:00:00 2001 From: Johnathan Date: Mon, 23 Jul 2018 07:12:47 -0400 Subject: [PATCH] Python depends for telnet tls Addresses feature request in issue #1637 Installs py2-openssl as well as cryptography, pyasn1, and service_identity --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 27af6b2a3ae..4b8411ecc26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,13 +24,14 @@ FROM alpine MAINTAINER www.evennia.com # install compilation environment -RUN apk update && apk add python py-pip python-dev py-setuptools gcc musl-dev jpeg-dev zlib-dev bash +RUN apk update && apk add python py-pip python-dev py-setuptools gcc musl-dev jpeg-dev zlib-dev bash py2-openssl # add the project source ADD . /usr/src/evennia # install dependencies RUN pip install -e /usr/src/evennia --trusted-host pypi.python.org +RUN pip install cryptography pyasn1 service_identity # add the game source when rebuilding a new docker image from inside # a game dir