Updated Dockerfile to add new files to the image.

This commit is contained in:
2025-08-18 23:10:28 +02:00
parent 4b86f2bd57
commit c6349e2577

View File

@@ -7,6 +7,8 @@ COPY requirements.txt .
RUN pip install --root-user-action=ignore --no-cache-dir -r requirements.txt RUN pip install --root-user-action=ignore --no-cache-dir -r requirements.txt
COPY image-chooser.py . COPY image-chooser.py .
COPY templates .
COPY templates.json .
COPY ./entrypoint.sh / COPY ./entrypoint.sh /
ENTRYPOINT [ "/entrypoint.sh" ] ENTRYPOINT [ "/entrypoint.sh" ]