Python depends for telnet tls

Addresses feature request in issue #1637

Installs py2-openssl as well as cryptography, pyasn1, and service_identity
This commit is contained in:
Johnathan 2018-07-23 07:12:47 -04:00 committed by GitHub
parent 27875ba04d
commit 816c2b90b7

View file

@ -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