From ccf5b34b0d027e312cfe9e5122a898e067eec5c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Reuh=20Fildadut?= Date: Thu, 9 Oct 2025 18:43:37 +0200 Subject: [PATCH] fix: missing dependency in docker container & unbuffered output --- Dockerfile | 4 ++-- README.md | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dc436bc..3aed8ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM docker.io/alpine:3.22 -RUN apk add --no-cache python3 py3-requests py3-jinja2 +RUN apk add --no-cache python3 py3-requests py3-jinja2 py3-tzdata RUN mkdir /feather WORKDIR /feather COPY *.py config.default.toml LICENSE /feather/ -ENTRYPOINT [ "python3", "main.py" ] +ENTRYPOINT [ "python3", "-u", "main.py" ] diff --git a/README.md b/README.md index a10d06e..20153dc 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ After changing the configuration, you can call `feather regenerate` to regenerat ### Docker +`podman run -d -v ./config.toml:/feather/config.toml -v ./data:/feather/data -v ./reader:/feather/reader --name feather feather daemon` + ### Raw ## FAQ