Skip to content
This repository has been archived by the owner on Nov 12, 2023. It is now read-only.

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Grünewaldt authored Oct 13, 2019
1 parent 638d98d commit fef84e5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cloutainer/k8s-jenkins-slave-base:v21
FROM cloutainer/k8s-jenkins-slave-base:v22

#
# BASE PACKAGES
Expand All @@ -21,6 +21,13 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
apt-get update -qqy && apt-get -qqy install -y nodejs && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/*

#
# KUBERNETES CLI (kubectl)
#
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && \
chmod +x ./kubectl && \
mv ./kubectl /usr/local/bin/kubectl

#
# CHROME
#
Expand Down

0 comments on commit fef84e5

Please sign in to comment.