Docker publish

This commit is contained in:
Andras Schmelczer 2026-03-15 09:02:20 +00:00
parent 1569d116a9
commit daf830c5ed

View file

@ -63,3 +63,22 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha,scope=screenshot
cache-to: type=gha,mode=max,scope=screenshot
- name: Set up uv
uses: astral-sh/setup-uv@v4
- name: Download arcgis data for finder
run: uv run python -m pipeline.download.arcgis --output property-data/arcgis_data.parquet
- name: Build and push finder service
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile.finder
push: true
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-finder:latest
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-finder:sha-${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha,scope=finder
cache-to: type=gha,mode=max,scope=finder