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

search: preview added

- The search result list now has previews
- The Dockerfile doesnt need git anymore
This commit is contained in:
TiynGER
2020-06-12 23:49:59 +02:00
parent 19cf415947
commit 26ecbf1007
9 changed files with 72 additions and 24 deletions

21
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 -y
COPY src /wiki
WORKDIR /wiki
RUN pip3 install -r requirements.txt
VOLUME /wiki/templates/entry
EXPOSE 5000
ENTRYPOINT [ "python3" ]
CMD [ "app.py" ]