Merge pull request 'fix: fix docker build for CI' (#37) from ci-fix into main

Reviewed-on: https://git.example.com/jarianc/NewsArchiverV2/pulls/37
This commit is contained in:
Jarian Cottingham 2026-07-05 19:14:03 -05:00
commit 5aa4a98e51
2 changed files with 1 additions and 4 deletions

View File

@ -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

View File

@ -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