1
0
mirror of https://github.com/tiyn/amphora-wiki.git synced 2025-10-09 17:37:58 +02:00

initial commit

This commit is contained in:
TiynGER
2020-05-30 01:46:10 +02:00
parent 1c57f74541
commit 51682d00f0
15 changed files with 499 additions and 0 deletions

21
docker/Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM ubuntu
MAINTAINER Tiyn tiyn@martenkante.eu
RUN apt-get update
RUN apt-get install python3 python3-pip git -y
RUN git clone https://github.com/tiyn/tiyny-wiki /wiki
WORKDIR /wiki/src
RUN pip3 install -r requirements.txt
VOLUME /wiki/src/templates/entry
EXPOSE 5000
ENTRYPOINT [ "python3" ]
CMD [ "app.py" ]