basic vibe code structure

This commit is contained in:
luptmoor
2026-04-09 13:23:01 +02:00
commit e0d4788a11
4 changed files with 796 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.11-slim
RUN apt-get update \
&& apt-get install -y libpq-dev gcc libexpat1 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY app/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ .
CMD ["python", "main.py"]