Update Dockerfile to python3
Changed from alpine -> python:3.7-alpine due to alpine only having python3.6 in repos. Some packages have changed as a result.
This commit is contained in:
parent
19776ece10
commit
c05b00c19b
1 changed files with 3 additions and 3 deletions
|
|
@ -27,13 +27,13 @@
|
||||||
# as a base for creating your own custom containerized Evennia game. For more
|
# as a base for creating your own custom containerized Evennia game. For more
|
||||||
# info, see https://github.com/evennia/evennia/wiki/Running%20Evennia%20in%20Docker .
|
# info, see https://github.com/evennia/evennia/wiki/Running%20Evennia%20in%20Docker .
|
||||||
#
|
#
|
||||||
FROM alpine
|
FROM python:3.7-alpine
|
||||||
|
|
||||||
LABEL maintainer="www.evennia.com"
|
LABEL maintainer="www.evennia.com"
|
||||||
|
|
||||||
# install compilation environment
|
# install compilation environment
|
||||||
RUN apk update && apk add bash gcc jpeg-dev musl-dev procps py-pip \
|
RUN apk update && apk add bash gcc jpeg-dev musl-dev procps \
|
||||||
py-setuptools py2-openssl python python-dev zlib-dev gettext
|
libffi-dev openssl-dev zlib-dev gettext
|
||||||
|
|
||||||
# add the files required for pip installation
|
# add the files required for pip installation
|
||||||
COPY ./setup.py /usr/src/evennia/
|
COPY ./setup.py /usr/src/evennia/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue