Skip to content

Commit 4fe6c47

Browse files
Lasse Benningaclaude
andcommitted
fix(readme): use :latest image tag instead of :1.0
Pinned tags cause the ACA job to run stale code after updates. Using :latest ensures every push is picked up automatically. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ba90d70 commit 4fe6c47

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ uv run pytest tests/ -v
4242

4343
```bash
4444
# Build for linux/amd64 (required by Azure Container Apps) and push to ACR
45-
docker build --platform linux/amd64 -t hyfregistry.azurecr.io/my-pipeline:1.0 .
46-
docker push hyfregistry.azurecr.io/my-pipeline:1.0
45+
docker build --platform linux/amd64 -t hyfregistry.azurecr.io/my-pipeline:latest .
46+
docker push hyfregistry.azurecr.io/my-pipeline:latest
4747

4848
# Create Container App Job (runs daily at 06:00 UTC)
4949
az containerapp job create \
5050
--name my-pipeline-job \
5151
--resource-group rg-hyf-data \
5252
--environment env-hyf-data \
53-
--image hyfregistry.azurecr.io/my-pipeline:1.0 \
53+
--image hyfregistry.azurecr.io/my-pipeline:latest \
5454
--registry-server hyfregistry.azurecr.io \
5555
--trigger-type Schedule \
5656
--cron-expression "0 6 * * *" \

0 commit comments

Comments
 (0)