diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e3055bd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +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" ]