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