From d19b1748845617ae37b3638e982d90f66b922c26 Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Sun, 5 Jul 2026 23:59:38 +0000 Subject: [PATCH] fix: fix docker build for CI --- .gitea/workflows/ci.yml | 2 +- Dockerfile | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c0f3dac..b1da228 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: if: always() run: | if [[ -f Dockerfile ]]; then - docker build -t $GITHUB_REPOSITORY:test . + docker build -t $(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]'):test . else echo "No Dockerfile found, skipping docker build" fi diff --git a/Dockerfile b/Dockerfile index 2975ada..91c66bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,6 @@ COPY requirements.txt . # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt -# Install Playwright browsers -RUN playwright install chromium --with-deps || true - # Create app directory structure RUN mkdir -p /app/archival_data