Unverified Commit 7feaaefb authored by James Lamb's avatar James Lamb Committed by GitHub
Browse files

[docs][docker] cleaned up CODEOWNERS and fixed build warning in dockerfile-python (#2555)

parent 31bec2fb
...@@ -6,6 +6,9 @@ ...@@ -6,6 +6,9 @@
# setting reviewers on PRs manually, but this file should # setting reviewers on PRs manually, but this file should
# offer a reasonable automatic best-guess # offer a reasonable automatic best-guess
# catch-all rule (this only gets matched if no rules below match)
* @guolinke @StrikerRUS @jameslamb @Laurae2
# main C++ code # main C++ code
include/ @guolinke @chivee include/ @guolinke @chivee
src/ @guolinke @chivee src/ @guolinke @chivee
...@@ -27,11 +30,18 @@ helpers/ @StrikerRUS @guolinke ...@@ -27,11 +30,18 @@ helpers/ @StrikerRUS @guolinke
# CI administrative stuff # CI administrative stuff
.ci/ @StrikerRUS @Laurae2 @jameslamb .ci/ @StrikerRUS @Laurae2 @jameslamb
docs/ @StrikerRUS @Laurae2 @jameslamb docs/ @StrikerRUS @Laurae2 @jameslamb
examples/ @StrikerRUS @jameslamb @guolinke
*.yml @StrikerRUS @Laurae2 @jameslamb *.yml @StrikerRUS @Laurae2 @jameslamb
.vsts-ci.yml @Laurae2 .vsts-ci.yml @Laurae2
# GPU code # docker setup
docker/ @StrikerRUS @jameslamb
docker/dockerfile-cli @guolinke @chivee
docker/gpu/ @huanzhang12 docker/gpu/ @huanzhang12
docker/dockerfile-python @StrikerRUS @chivee @wxchan @henry0312
docker/dockerfile-r @Laurae2 @jameslamb
# GPU code
docs/GPU-*.rst @huanzhang12 docs/GPU-*.rst @huanzhang12
src/treelearner/gpu_tree_learner.cpp @huanzhang12 @guolinke @chivee src/treelearner/gpu_tree_learner.cpp @huanzhang12 @guolinke @chivee
src/treelearner/tree_learner.cpp @huanzhang12 @guolinke @chivee src/treelearner/tree_learner.cpp @huanzhang12 @guolinke @chivee
......
...@@ -12,9 +12,7 @@ RUN apt-get update && \ ...@@ -12,9 +12,7 @@ RUN apt-get update && \
g++ \ g++ \
git \ git \
wget && \ wget && \
# python environment
# python-package
# miniconda
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && \ wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
/bin/bash Miniconda3-latest-Linux-x86_64.sh -f -b -p $CONDA_DIR && \ /bin/bash Miniconda3-latest-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
export PATH="$CONDA_DIR/bin:$PATH" && \ export PATH="$CONDA_DIR/bin:$PATH" && \
...@@ -23,8 +21,7 @@ RUN apt-get update && \ ...@@ -23,8 +21,7 @@ RUN apt-get update && \
conda install -q -y numpy scipy scikit-learn pandas && \ conda install -q -y numpy scipy scikit-learn pandas && \
git clone --recursive --branch stable --depth 1 https://github.com/Microsoft/LightGBM && \ git clone --recursive --branch stable --depth 1 https://github.com/Microsoft/LightGBM && \
cd LightGBM/python-package && python setup.py install && \ cd LightGBM/python-package && python setup.py install && \
# clean
# clean
apt-get autoremove -y && apt-get clean && \ apt-get autoremove -y && apt-get clean && \
conda clean -a -y && \ conda clean -a -y && \
rm -rf /usr/local/src/* rm -rf /usr/local/src/*
...@@ -2,7 +2,6 @@ FROM rocker/verse:latest ...@@ -2,7 +2,6 @@ FROM rocker/verse:latest
WORKDIR /lgbm WORKDIR /lgbm
# R
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y build-essential && \ apt-get install -y build-essential && \
git clone --recursive --branch stable --depth 1 https://github.com/Microsoft/LightGBM && \ git clone --recursive --branch stable --depth 1 https://github.com/Microsoft/LightGBM && \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment