feat: remove stamp_ prefix from directories

This commit is contained in:
Stijnvandenbroek
2025-06-29 11:34:40 +02:00
parent fd1229c8f3
commit 16e2032f9e
32 changed files with 7 additions and 7 deletions

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