pyratelog

personal blog
git clone git://git.pyratebeard.net/pyratelog.git
Log | Files | Refs | README

commit cce2a808238c0fc47caf298e3ef5238d2be52af8
parent 43ab59e15817d6fb6c2e72e6106fdf6a8d8326fb
Author: pyratebeard <root@pyratebeard.net>
Date:   Wed, 13 Jan 2021 21:29:31 +0000

created docker image 'https://hub.docker.com/r/pyratebeard/pyratelog'

Diffstat:
ADockerfile | 23+++++++++++++++++++++++
1 file changed, 23 insertions(+), 0 deletions(-)

diff --git a/Dockerfile b/Dockerfile @@ -0,0 +1,23 @@ +from alpine:latest +run apk add --no-cache \ + git \ + build-base \ + gcc \ + abuild \ + binutils \ + cmake \ + extra-cmake-modules \ + python3 \ + supervisor + +run curl -fsSL "https://github.com/jgm/pandoc/releases/download/2.11.3.2/pandoc-2.11.3.2-linux-amd64.tar.gz" -o /tmp/pandoc.tar.gz ; \ + tar xvzf /tmp/pandoc.tar.gz --strip-components 1 -C /usr/local/ + +copy supervisord.conf /etc/ + +run mkdir /blog +copy post_template.html style.css /blog/ + +copy pyratelog.sh / + +entrypoint /usr/bin/supervisord -c /etc/supervisord.conf