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.

23 lines
299 B

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