1
0
mirror of https://github.com/tiyn/amphora-wiki.git synced 2025-03-16 22:37:48 +01:00
amphora-wiki/Dockerfile

20 lines
233 B
Docker

FROM python:3
MAINTAINER tiyn tiyn@mail-mk.eu
COPY src /wiki
WORKDIR /wiki
RUN pip3 install -r requirements.txt
VOLUME /wiki/templates/entry
VOLUME /wiki/static/graphics
EXPOSE 5000
ENTRYPOINT [ "python3" ]
CMD [ "app.py" ]