1
0
mirror of https://github.com/tiyn/amphora-wiki.git synced 2025-04-19 15:27:46 +02:00
amphora-wiki/docker/Dockerfile
2020-05-30 01:46:10 +02:00

22 lines
321 B
Docker

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" ]