Initial AppFactory worker

This commit is contained in:
AppFactory Bot
2026-05-28 13:50:29 +02:00
commit 21f1d4ec7a
3 changed files with 280 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update \
&& apt-get install -y --no-install-recommends docker.io git curl sqlite3 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app ./app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "9200"]