mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
added initial dockerfiles to the top level folder and game_template directories
This commit is contained in:
parent
9a41b30089
commit
f5f61ea5ba
2 changed files with 12 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal 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
|
||||
1
evennia/game_template/Dockerfile
Normal file
1
evennia/game_template/Dockerfile
Normal file
|
|
@ -0,0 +1 @@
|
|||
FROM evennia/evennia:latest
|
||||
Loading…
Add table
Add a link
Reference in a new issue