1
0
mirror of https://github.com/tiyn/beaker-blog.git synced 2025-04-02 15:37:46 +02:00
beaker-blog/Dockerfile
2021-06-08 14:35:35 +02:00

18 lines
203 B
Docker

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