feat: initial commit — polymarket-bot source + CI/CD pipeline
CI/CD / build-and-push (push) Failing after 30s

This commit is contained in:
2026-04-13 16:05:45 +00:00
commit 4fda34df3b
23 changed files with 1436 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY bot/ ./bot/
COPY api/ ./api/
CMD ["python3", "-m", "bot.main"]