start at geo-db

This commit is contained in:
luptmoor
2026-03-04 14:11:42 +01:00
commit 2fe03e22d0
6 changed files with 132 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.11-slim
RUN apt-get update && apt-get install -y libpq-dev gcc \
&& 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"]