Added Docker/Podman build information.

This commit is contained in:
2025-08-14 21:30:56 +02:00
parent 73c87a733b
commit d2abe3fd27
9 changed files with 148 additions and 1 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --root-user-action=ignore --no-cache-dir -r requirements.txt
COPY image-chooser.py .
COPY ./entrypoint.sh /
ENTRYPOINT [ "/entrypoint.sh" ]
CMD [ "run", "image-chooser.py" ]