Skip to content

Commit

Permalink
working version
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Zaniewski committed Jan 23, 2020
1 parent 5fb9282 commit d81bcde
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .bash_profile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
FROM ubuntu:18.10

COPY ./.bashrc /root/.bashrc
COPY ./.bash_profile /root/.bash_profile

RUN apt-get update && apt-get -y install \
gnupg \
curl \
git
git \
bash-completion \
apt-transport-https

# Install kubectl
RUN apt-get -y install apt-transport-https
RUN curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
RUN echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | tee -a /etc/apt/sources.list.d/kubernetes.list
RUN apt-get update && apt-get install -y kubectl
Expand Down

0 comments on commit d81bcde

Please sign in to comment.