feat(backend): image endpoints toegevoegd

This commit is contained in:
kodi
2026-02-21 12:04:21 +01:00
parent acbf150e28
commit 1ed7699437
3 changed files with 162 additions and 1 deletions
+1
View File
@@ -3,4 +3,5 @@ WORKDIR /app
RUN apt-get update && apt-get install -y curl systemd && rm -rf /var/lib/apt/lists/*
RUN pip install fastapi uvicorn requests-unixsocket pyyaml pytest httpx
COPY app.py .
COPY app_images.py .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]