feat: import
perso/opencode-dispatch/pipeline/head This commit looks good

This commit is contained in:
Julien Cabillot
2026-03-27 16:55:22 -04:00
parent c0e82369cd
commit be3edc0e14
11 changed files with 249 additions and 830 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.14-slim
WORKDIR /app
# Install dependencies first (layer caching)
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy bot
COPY bot.py .
# Non-root user
RUN useradd --no-create-home --shell /bin/false botuser
USER botuser
CMD ["python", "bot.py"]