File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -215,4 +215,16 @@ RUN curl -fsSL https://aka.ms/install-azd.sh | bash && \
215
215
# Add soft links
216
216
#
217
217
ln -s /usr/bin/python3 /usr/bin/python && \
218
- ln -s /usr/bin/node /usr/bin/nodejs
218
+ ln -s /usr/bin/node /usr/bin/nodejs && \
219
+ #
220
+ # Install rootless kit
221
+ TMP_DIR=$(mktemp -d) && \
222
+ pushd $TMP_DIR && \
223
+ ROOTLESSKIT_VERSION=$(curl https://api.github.com/repos/rootless-containers/rootlesskit/releases/latest | jq -r '.tag_name' ) && \
224
+ curl -LO https://github.com/rootless-containers/rootlesskit/releases/download/${ROOTLESSKIT_VERSION}/rootlesskit-x86_64.tar.gz && \
225
+ curl -LO https://github.com/rootless-containers/rootlesskit/releases/download/${ROOTLESSKIT_VERSION}/SHA256SUMS && \
226
+ sha256sum -c SHA256SUMS --ignore-missing && \
227
+ tar -xf rootlesskit-x86_64.tar.gz && \
228
+ cp rootlesskit rootlesskit-docker-proxy /usr/bin/ && \
229
+ popd && \
230
+ rm -rf $TMP_DIR
Original file line number Diff line number Diff line change @@ -1086,6 +1086,8 @@ roff2pdf
1086
1086
roff2ps
1087
1087
roff2text
1088
1088
roff2x
1089
+ rootlesskit
1090
+ rootlesskit-docker-proxy
1089
1091
route
1090
1092
routef
1091
1093
routel
You can’t perform that action at this time.
0 commit comments