FROM docker.io/alpine:3.22 RUN apk add --no-cache python3 py3-requests py3-jinja2 RUN mkdir /feather WORKDIR /feather COPY *.py config.default.toml LICENSE /feather ENTRYPOINT [ "python3", "main.py" ]