FROM docker.io/alpine:3.22 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", "-u", "feather.py" ]