# Deliberately broken: hadolint rejects this on commit.
#   DL3006 - the base image is not tagged
#   DL3008 - apt packages are not version pinned
#   DL3015 - --no-install-recommends is missing
#   DL3009 - the apt lists are not cleaned up
FROM ubuntu
RUN apt-get update && apt-get install -y curl
CMD ["curl", "--version"]
