代码拉取完成,页面将自动刷新
# my private customization of generic cloudmacs package
FROM karlicoss/cloudmacs:latest AS cloudmacs
###
# these packages are necessary for my spacemacs configuration
# TODO not sure why it wants xclip, presumably misconfigured
RUN apk add --no-cache git xclip
ARG RIPGREP_VERSION="11.0.2"
# TODO is there a shorter way of doing this??
RUN TDIR=$(mktemp -d) \
&& cd "$TDIR" \
&& wget https://github.com/BurntSushi/ripgrep/releases/download/${RIPGREP_VERSION}/ripgrep-${RIPGREP_VERSION}-x86_64-unknown-linux-musl.tar.gz \
&& tar xzf ripgrep-${RIPGREP_VERSION}-x86_64-unknown-linux-musl.tar.gz \
&& mv ripgrep-${RIPGREP_VERSION}-x86_64-unknown-linux-musl/rg /usr/local/bin \
&& rm -rf "$TDIR"
ARG FDFIND_VERSION="7.4.0"
# TODO is there a shorter way of doing this??
RUN TDIR=$(mktemp -d) \
&& cd "$TDIR" \
&& wget https://github.com/sharkdp/fd/releases/download/v${FDFIND_VERSION}/fd-v${FDFIND_VERSION}-x86_64-unknown-linux-musl.tar.gz \
&& tar xzf fd-v${FDFIND_VERSION}-x86_64-unknown-linux-musl.tar.gz \
&& mv fd-v${FDFIND_VERSION}-x86_64-unknown-linux-musl/fd /usr/local/bin/fdfind \
&& rm -rf "$TDIR"
###
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。