mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
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
|
||||
# info, see https://github.com/evennia/evennia/wiki/Running%20Evennia%20in%20Docker .
|
||||
#
|
||||
FROM alpine
|
||||
FROM python:3.7-alpine
|
||||
|
||||
LABEL maintainer="www.evennia.com"
|
||||
|
||||
# install compilation environment
|
||||
RUN apk update && apk add bash gcc jpeg-dev musl-dev procps py-pip \
|
||||
py-setuptools py2-openssl python python-dev zlib-dev gettext
|
||||
RUN apk update && apk add bash gcc jpeg-dev musl-dev procps \
|
||||
libffi-dev openssl-dev zlib-dev gettext
|
||||
|
||||
# add the files required for pip installation
|
||||
COPY ./setup.py /usr/src/evennia/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue