Pavel Tisner#14
Conversation
pavel-tisner
commented
Jun 3, 2026
- Containerized my Week 3 API ingestion pipeline
- Added pinned dependencies
- Added unit tests
- Added CI with ruff, format check, pytest, and Docker build
- Pushed the image to Azure Container Registry using the fallback laptop path
- Added the ACR screenshot to assets/acr_push_week5.png
- Filled in AI_ASSIST.md
📝 HackYourFuture auto gradeAssignment Score: 100 / 100 ✅Status: ✅ Passed Test Details |
|
✅ Image pushed to ACR
Browse the registry in the Azure Portal: https://portal.azure.com/#@hackyourfuture.nl/resource/subscriptions/1120c89d-2a5f-4a15-a582-2ea34f0bb5c3/resourceGroups/rg-hyf-data/providers/Microsoft.ContainerRegistry/registries/hyfregistry/repository Task 7 verification: your Dockerfile built and pushed cleanly from commit |
|
|
||
| # TODO: copy source code | ||
| COPY src/ src/ | ||
| COPY data/ data/ |
There was a problem hiding this comment.
This makes the image depend on local bundled data. That is okay for a demo, but for a shippable pipeline it is often better to pass input paths or mount data at runtime, so the image stays reusable across environments