Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
SocialGouv
docker
Commits
78c677f5
Commit
78c677f5
authored
May 19, 2021
by
Julien Bouquillon
🐫
Browse files
feat(kubectl): add kapp, git and yq4
parent
fd2e4771
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
kubectl/Dockerfile
kubectl/Dockerfile
+24
-0
No files found.
kubectl/Dockerfile
View file @
78c677f5
...
...
@@ -17,6 +17,12 @@ RUN set -ex \
gettext=="0.20.2-r2" \
# renovate: datasource=repology depName=alpine_3_13/jq versioning=loose
jq=="1.6-r1" \
# renovate: datasource=repology depName=alpine_3_13/git versioning=loose
git=="2.30.2-r0" \
# renovate: datasource=repology depName=alpine_3_13/nodejs versioning=loose
nodejs==14.16.1-r1 \
# renovate: datasource=repology depName=alpine_3_13/yarn versioning=loose
yarn==1.22.10-r0 \
#
&& wget -q -O /dev/shm/kubectl \
"https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl" \
...
...
@@ -29,6 +35,24 @@ RUN set -ex \
&& mv /kustomize /usr/local/bin/kustomize \
;
RUN
set
-ex
\
#
&& apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
# renovate: datasource=repology depName=alpine_edge/yq versioning=loose
yq=="4.6.3-r0";
# renovate: datasource=github-releases depName=k14s/kapp
ARG
KAPP_VERSION=v0.36.0
RUN
set
-ex
\
#
&& wget -q -O /usr/local/bin/kapp \
"https://github.com/k14s/kapp/releases/download/${KAPP_VERSION}/kapp-linux-amd64" \
&& chmod +x /usr/local/bin/kapp \
#
&& kapp --version \
;
USER
1001
ENTRYPOINT
[ "kubectl" ]
CMD
[ "--help" ]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment