first commit

This commit is contained in:
2026-05-18 20:35:01 +00:00
commit 5466d14040
17 changed files with 940 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
FROM python:3.12-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
openssh-client \
ca-certificates \
curl \
jq \
ripgrep \
tree \
&& rm -rf /var/lib/apt/lists/*
RUN useradd -m -u 1000 agent
WORKDIR /app
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
USER agent
CMD ["uvicorn", "project_agent.server:app", "--host", "0.0.0.0", "--port", "8787"]