A blog system based on plain-files.
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.

21 lines
320 B

7 months ago
7 months ago
7 months ago
7 months ago
  1. FROM ubuntu
  2. MAINTAINER Tiyn tiyn@martenkante.eu
  3. RUN apt-get update
  4. RUN apt-get install python3 python3-pip git -y
  5. RUN git clone https://github.com/tiyn/flaskblog /blog
  6. WORKDIR /blog/src
  7. RUN pip3 install -r requirements.txt
  8. VOLUME /blog/src/templates/entry
  9. EXPOSE 5000
  10. ENTRYPOINT [ "python3" ]
  11. CMD [ "app.py" ]