added initial dockerfiles to the top level folder and game_template directories

This commit is contained in:
Dan Feeney 2016-12-14 09:17:28 -06:00 committed by Griatch
parent 9a41b30089
commit f5f61ea5ba
2 changed files with 12 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM python:2.7-alpine
MAINTAINER Dan Feeney "feend78@gmail.com"
RUN apk update && apk add gcc musl-dev
ENV REFRESHED_AT 2016-12-09
ADD . /usr/src/evennia
RUN pip install -e /usr/src/evennia
ONBUILD ADD . /usr/src/game
VOLUME /usr/src/game
WORKDIR /usr/src/game
CMD ["evennia", "-l", "-i", "start"]
EXPOSE 8000 8001 4000

View file

@ -0,0 +1 @@
FROM evennia/evennia:latest