fix: fix docker build for CI

This commit is contained in:
Jarian Cottingham 2026-07-05 23:59:38 +00:00 committed by Jarian
parent 2bb690d3da
commit d19b174884
2 changed files with 1 additions and 4 deletions

View File

@ -96,7 +96,7 @@ jobs:
if: always() if: always()
run: | run: |
if [[ -f Dockerfile ]]; then if [[ -f Dockerfile ]]; then
docker build -t $GITHUB_REPOSITORY:test . docker build -t $(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]'):test .
else else
echo "No Dockerfile found, skipping docker build" echo "No Dockerfile found, skipping docker build"
fi fi

View File

@ -14,9 +14,6 @@ COPY requirements.txt .
# Install Python dependencies # Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
# Install Playwright browsers
RUN playwright install chromium --with-deps || true
# Create app directory structure # Create app directory structure
RUN mkdir -p /app/archival_data RUN mkdir -p /app/archival_data