Dockerfiles Using 'latest' Tag or Missing Image Tags
Dockerfile FROM instructions specify image:latest or omit tags entirely (which defaults to :latest). Developers write FROM node, FROM python, FROM ubuntu without version tags for convenience during development. The 'latest' tag is mutable and can point to different image versions over time as new releases are published. Applications that build successfully in development may break in production when 'latest' points to a new major version with breaking changes, or worse, pull a compromised image if an attacker gains access to the image repository.