Lines Matching full:ubuntu
18 # UBUNTU_MIRROR [optional] The URL of a mirror of Ubuntu to override the
27 # instead of our default (public.ecr.aws/ubuntu)
38 # fedora|ubuntu. Note that if you chose fedora, you will
40 # Default: "ubuntu"
44 # ubuntu: latest|16.04|14.04|trusty|xenial
94 docker_reg=${DOCKER_REG:-"public.ecr.aws/ubuntu"}
98 distro=${distro:-ubuntu}
212 elif [[ "${distro}" == ubuntu ]]; then
255 # Latest Ubuntu added a default user (ubuntu), which takes 1000 UID.
257 # then the container no longer will work. Delete the new ubuntu user
259 RUN if id ubuntu > /dev/null 2>&1; then userdel -r ubuntu > /dev/null 2>&1; fi