Merge pull request #11901 from albers/dockerfile-bash-completion

Enable bash completion in build environment
This commit is contained in:
Jessie Frazelle 2015-03-30 11:52:43 -07:00
commit f3a048516e
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,7 @@ RUN apt-get update && apt-get install -y \
apparmor \ apparmor \
aufs-tools \ aufs-tools \
automake \ automake \
bash-completion \
btrfs-tools \ btrfs-tools \
build-essential \ build-essential \
curl \ curl \
@ -142,6 +143,9 @@ ENV DOCKER_BUILDTAGS apparmor selinux btrfs_noversion
# Let us use a .bashrc file # Let us use a .bashrc file
RUN ln -sfv $PWD/.bashrc ~/.bashrc RUN ln -sfv $PWD/.bashrc ~/.bashrc
# Register Docker's bash completion.
RUN ln -sv $PWD/contrib/completion/bash/docker /etc/bash_completion.d/docker
# Get useful and necessary Hub images so we can "docker load" locally instead of pulling # Get useful and necessary Hub images so we can "docker load" locally instead of pulling
COPY contrib/download-frozen-image.sh /go/src/github.com/docker/docker/contrib/ COPY contrib/download-frozen-image.sh /go/src/github.com/docker/docker/contrib/
RUN ./contrib/download-frozen-image.sh /docker-frozen-images \ RUN ./contrib/download-frozen-image.sh /docker-frozen-images \