加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 815 Bytes
一键复制 编辑 原始数据 按行查看 历史
Junfeng Li 提交于 2017-08-23 20:49 . Add mypy and flake8 to Docker image.
FROM ubuntu:16.04
RUN apt-get update && \
apt-get install --yes git
RUN apt-get install --yes software-properties-common && \
add-apt-repository --yes ppa:neovim-ppa/stable && \
apt-get update && \
apt-get install --yes neovim && \
apt-get install --yes python3-dev python3-pip && \
pip3 install neovim mypy flake8
RUN apt-get install --yes python3-pytest
RUN apt-get install --yes curl
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=nightly -y && \
~/.cargo/bin/rustup component add rls && \
~/.cargo/bin/rustup component add rust-analysis && \
~/.cargo/bin/rustup component add rust-src
RUN timeout 3 ~/.cargo/bin/rustup run nightly rls
RUN git clone --depth 1 https://github.com/junegunn/fzf.git /root/.fzf && /root/.fzf/install --bin
CMD /bin/bash
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化