Skip to content

Commit

Permalink
kubectl library added
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrauzzi committed Mar 10, 2023
1 parent 6acadfa commit a8f9613
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
FROM jupyter/base-notebook:python-3.7.6



USER root

RUN apt-get -y update && apt-get -y install curl && rm -rf /var/lib/apt/lists/*

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
RUN chmod +x ./kubectl
RUN mv ./kubectl /usr/local/bin

0 comments on commit a8f9613

Please sign in to comment.