feat: initial commit

This commit is contained in:
Stijnvandenbroek
2025-06-29 11:26:13 +02:00
parent e6be7e7fbf
commit 672d3d1cfc
34 changed files with 19962 additions and 0 deletions

15
stamp_backend/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get install -y curl && apt-get clean
RUN pip install uv
RUN uv pip install --group main --system
EXPOSE 8000
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]