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)
39 # fedora|ubuntu. Note that if you chose fedora, you will
41 # Default: "ubuntu"
45 # ubuntu: latest|16.04|14.04|trusty|xenial
95 docker_reg=${DOCKER_REG:-"public.ecr.aws/ubuntu"}
99 distro=${distro:-ubuntu}
213 elif [[ "${distro}" == ubuntu ]]; then
256 # Latest Ubuntu added a default user (ubuntu), which takes 1000 UID.
258 # then the container no longer will work. Delete the new ubuntu user
260 RUN if id ubuntu > /dev/null 2>&1; then userdel -r ubuntu > /dev/null 2>&1; fi