docker-uv-image-builds
Installation
SKILL.md
Docker Image Builds for Python Services
Image naming
Images follow the pattern: mitodl/<service-name>
The service name should match the application or code location name used elsewhere in configuration (Helm values, Pulumi stacks, Concourse pipelines).
Image tags
Tag images with the git short ref (7-character SHA):
GIT_TAG=$(git rev-parse --short HEAD)
docker build -t mitodl/${SERVICE_NAME}:${GIT_TAG} .
Do not use latest as a production tag.
Related skills