mirror of https://github.com/tiyn/amphora-wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
269 B
22 lines
269 B
5 years ago
|
FROM ubuntu
|
||
|
|
||
|
MAINTAINER Tiyn tiyn@martenkante.eu
|
||
|
|
||
|
RUN apt-get update
|
||
|
|
||
5 years ago
|
RUN apt-get install python3 python3-pip -y
|
||
5 years ago
|
|
||
5 years ago
|
COPY src /wiki
|
||
5 years ago
|
|
||
5 years ago
|
WORKDIR /wiki
|
||
5 years ago
|
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
5 years ago
|
VOLUME /wiki/templates/entry
|
||
5 years ago
|
|
||
|
EXPOSE 5000
|
||
|
|
||
|
ENTRYPOINT [ "python3" ]
|
||
|
|
||
|
CMD [ "app.py" ]
|