Skip to content

Commit

Permalink
Refactor Dockerfile to use 'install' instead of 'apt-get install' for…
Browse files Browse the repository at this point in the history
… kubectl installation
  • Loading branch information
Tolfx committed Dec 21, 2023
1 parent 9aae6e1 commit 335e627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN set -x \
libtinfo5:i386=6.2+20201114-2+deb11u2 \
libcurl3-gnutls:i386=7.74.0-1.3+deb11u9 \
&& curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
&& apt-get install -y -o root -g root -m 0755 kubectl /usr/local/bin/kubectl \
&& install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl \
&& mkdir -p "${STEAMAPPDIR}" \
# Add entry script
&& wget "${DLURL}/master/etc/entry.sh" -O "${HOMEDIR}/entry.sh" \
Expand Down

0 comments on commit 335e627

Please sign in to comment.