build prospect intelligence platform MVP

This commit is contained in:
Marco0300
2026-09-02 17:38:50 +02:00
commit 44be4efc82
29 changed files with 973 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.13-alpine
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
RUN addgroup -S app && adduser -S -G app app
WORKDIR /app
COPY infrastructure/docker/api/server.py /app/server.py
RUN chown -R app:app /app
USER app
EXPOSE 8000
CMD ["python", "/app/server.py"]