feat: switch CI to linux runner with podman containers
Some checks failed
ci / test (push) Failing after 2s
ci / secrets (push) Failing after 2s
ci / build (push) Has been skipped

Replace ubuntu-latest runner with linux label and migrate all
container operations from docker to podman. Add requirements.txt
as single source of truth for runtime dependencies.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
user
2026-02-22 06:33:32 +01:00
parent 9a56dc778e
commit 3e2c431f49
3 changed files with 20 additions and 18 deletions

View File

@@ -1,10 +1,11 @@
FROM python:3.13-alpine
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir pyyaml>=6.0
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
PYTHONPATH=/app/src