From 7061f46ce26076dacd06947b18884a717ff2ed32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Reuh=20Fildadut?= Date: Thu, 9 Oct 2025 17:06:09 +0200 Subject: [PATCH] feat: add Dockerfile --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile 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" ]