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

feat: add Dockerfile

This commit is contained in:
Étienne Fildadut 2025-10-09 17:06:09 +02:00
parent 65926978bd
commit 7061f46ce2

10
Dockerfile Normal file
View file

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