3 Star 5 Fork 1

Gitee 极速下载/cloudmacs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/karlicoss/cloudmacs
克隆/下载
Dockerfile.customized 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
Dima Gerasimov 提交于 2019-11-25 06:34 +08:00 . Add fd-find
# 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"
###
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/mirrors/cloudmacs.git
git@gitee.com:mirrors/cloudmacs.git
mirrors
cloudmacs
cloudmacs
master

搜索帮助