Skip to content
This repository was archived by the owner on May 27, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.rke
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ RUN wget https://github.com/rancher/rke/releases/download/$RKE_VERSION/rke_linux
mv kubectl /bin/kubectl && \
chmod +x /bin/kubectl && \
cd $WORKSPACE && \
pip install -r requirements.txt
pip install --no-cache-dir -r requirements.txt
2 changes: 1 addition & 1 deletion Dockerfile.v3api
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ RUN wget https://storage.googleapis.com/kubernetes-release/release/$KUBECTL_VERS
mv rke_linux-amd64 /bin/rke && \
chmod +x /bin/rke && \
cd $WORKSPACE && \
pip install -r requirements_v3api.txt
pip install --no-cache-dir -r requirements_v3api.txt
2 changes: 1 addition & 1 deletion images/container-utils/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ RUN apt-get update -y && \
apt-get install -y python-pip python-dev build-essential curl dnsutils iputils-ping openssh-server net-tools && \
mkdir /var/run/sshd && echo 'root:screencast' | chpasswd && \
sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config && \
pip install -r requirements.txt
pip install --no-cache-dir -r requirements.txt

CMD ["/app/start.sh"]