dmlc--dgl
dce1f44d46
* CI for lint check * init submodule before run lint * install ubuntu core for lint docker * remove generator import in dgl
15 行
406 B
Docker
15 行
406 B
Docker
# CI docker for lint
|
|
# Adapted from github.com/dmlc/tvm/docker/Dockerfile.ci_lint
|
|
|
|
FROM ubuntu:16.04
|
|
|
|
COPY install/ubuntu_install_core.sh /install/ubuntu_install_core.sh
|
|
RUN bash /install/ubuntu_install_core.sh
|
|
|
|
COPY install/ubuntu_install_python.sh /install/ubuntu_install_python.sh
|
|
RUN bash /install/ubuntu_install_python.sh
|
|
|
|
RUN apt-get install -y doxygen graphviz
|
|
|
|
RUN pip3 install cpplint pylint mypy
|