1
0
mirror of https://github.com/tiyn/container-critique.git synced 2025-08-01 09:27:47 +02:00

20 lines
222 B
Docker

FROM python:3
MAINTAINER tiyn tiyn@mail-mk.eu
COPY src /blog
WORKDIR /blog
VOLUME /blog/data
RUN pip3 install -r requirements.txt
VOLUME /blog/templates/entry
EXPOSE 5000
ENTRYPOINT [ "python3" ]
CMD [ "app.py" ]