Dockerfile.ci & debug-ci now build working container for CI test image

This commit is contained in:
Disco DeDisco
2026-02-10 22:42:45 -05:00
parent 9fa428c63a
commit b94f1f48aa
4 changed files with 20 additions and 1 deletions

8
Dockerfile.ci Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.13-slim
COPY requirements.dev.txt requirements.dev.txt
RUN pip install -r requirements.dev.txt
RUN apt update -y && apt install -y firefox-esr
COPY infra/debug-ci.py debug-ci.py
CMD ["python", "debug-ci.py"]