mirror of
https://github.com/tiyn/beaker-blog.git
synced 2025-04-01 15:07:46 +02:00
20 lines
233 B
Docker
20 lines
233 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
|
|
|
|
VOLUME /blog/static/graphics
|
|
|
|
EXPOSE 5000
|
|
|
|
ENTRYPOINT [ "python3" ]
|
|
|
|
CMD [ "app.py" ]
|