Vendor later versions of jq/yq
This commit is contained in:
parent
1e19805757
commit
3a97358f30
11
Dockerfile
11
Dockerfile
@ -5,12 +5,10 @@ RUN apk add --upgrade --no-cache \
|
|||||||
curl \
|
curl \
|
||||||
git \
|
git \
|
||||||
grep \
|
grep \
|
||||||
jq \
|
|
||||||
openssh-client \
|
openssh-client \
|
||||||
py3-requests \
|
py3-requests \
|
||||||
skopeo \
|
skopeo \
|
||||||
util-linux \
|
util-linux
|
||||||
yq
|
|
||||||
|
|
||||||
RUN mkdir -p ~./local/bin
|
RUN mkdir -p ~./local/bin
|
||||||
RUN mkdir -p ~/.abra/apps
|
RUN mkdir -p ~/.abra/apps
|
||||||
@ -19,8 +17,11 @@ RUN mkdir -p ~/.ssh/
|
|||||||
|
|
||||||
RUN ssh-keyscan -p 2222 git.autonomic.zone > ~/.ssh/known_hosts
|
RUN ssh-keyscan -p 2222 git.autonomic.zone > ~/.ssh/known_hosts
|
||||||
|
|
||||||
RUN ln -sf /usr/bin/jq ~/.abra/vendor
|
RUN curl -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 --output ~/.abra/vendor/jq
|
||||||
RUN ln -sf /usr/bin/yq ~/.abra/vendor
|
RUN chmod +x ~/.abra/vendor/jq
|
||||||
|
|
||||||
|
RUN curl -L https://github.com/mikefarah/yq/releases/download/v4.9.3/yq_linux_amd64 --output ~/.abra/vendor/yq
|
||||||
|
RUN chmod +x ~/.abra/vendor/yq
|
||||||
|
|
||||||
# Note(decentral1se): it is fine to always use the development branch because
|
# Note(decentral1se): it is fine to always use the development branch because
|
||||||
# our Drone CI docker auto-tagger will publish official release tags and
|
# our Drone CI docker auto-tagger will publish official release tags and
|
||||||
|
Reference in New Issue
Block a user