1
0
Fork 0
mirror of https://codeberg.org/Reuh/feather.git synced 2025-10-27 18:19:32 +00:00

fix: missing dependency in docker container & unbuffered output

This commit is contained in:
Étienne Fildadut 2025-10-09 18:43:37 +02:00
parent 4d5b9a78d9
commit ccf5b34b0d
2 changed files with 4 additions and 2 deletions

View file

@ -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" ]