Skip to content

Commit

Permalink
Add packages distro (#126)
Browse files Browse the repository at this point in the history
* Add kubectx kubens

* bump packages release
  • Loading branch information
osterman authored Apr 26, 2018
1 parent 0f0f09c commit 3354f46
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@ RUN echo "net.ipv6.conf.all.disable_ipv6=0" > /etc/sysctl.d/00-ipv6.conf
RUN echo 'set noswapfile' >> /etc/vim/vimrc

WORKDIR /tmp
#
# Install the simple cloudposse package manager
#
ARG PACKAGES_VERSION=0.1.4
ENV PACKAGES_VERSION ${PACKAGES_VERSION}
RUN git clone --depth=1 -b ${PACKAGES_VERSION} https://github.com/cloudposse/packages.git /packages && rm -rf /packages/.git

#
# Install packges using the package manager
#
ARG PACKAGES="fetch kubectx kubens"
ENV PACKAGES ${PACKAGES}
RUN make -C /packages/install ${PACKAGES}

#
# Install aws-vault to easily assume roles (not related to HashiCorp Vault)
Expand Down

0 comments on commit 3354f46

Please sign in to comment.