1
0
mirror of https://github.com/tiyn/amphora-wiki.git synced 2025-04-17 22:37:47 +02:00
amphora-wiki/Dockerfile
2021-06-08 14:33:08 +02:00

18 lines
203 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
EXPOSE 5000
ENTRYPOINT [ "python3" ]
CMD [ "app.py" ]