Skip to content

Commit

Permalink
[docs][docker] cleaned up CODEOWNERS and fixed build warning in docke…
Browse files Browse the repository at this point in the history
…rfile-python (#2555)
  • Loading branch information
jameslamb committed Nov 12, 2019
1 parent 31bec2f commit 7feaaef
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
12 changes: 11 additions & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Expand Up @@ -6,6 +6,9 @@
# setting reviewers on PRs manually, but this file should
# 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
include/ @guolinke @chivee
src/ @guolinke @chivee
Expand All @@ -27,11 +30,18 @@ helpers/ @StrikerRUS @guolinke
# CI administrative stuff
.ci/ @StrikerRUS @Laurae2 @jameslamb
docs/ @StrikerRUS @Laurae2 @jameslamb
examples/ @StrikerRUS @jameslamb @guolinke
*.yml @StrikerRUS @Laurae2 @jameslamb
.vsts-ci.yml @Laurae2

# GPU code
# docker setup
docker/ @StrikerRUS @jameslamb
docker/dockerfile-cli @guolinke @chivee
docker/gpu/ @huanzhang12
docker/dockerfile-python @StrikerRUS @chivee @wxchan @henry0312
docker/dockerfile-r @Laurae2 @jameslamb

# GPU code
docs/GPU-*.rst @huanzhang12
src/treelearner/gpu_tree_learner.cpp @huanzhang12 @guolinke @chivee
src/treelearner/tree_learner.cpp @huanzhang12 @guolinke @chivee
Expand Down
7 changes: 2 additions & 5 deletions docker/dockerfile-python
Expand Up @@ -12,9 +12,7 @@ RUN apt-get update && \
g++ \
git \
wget && \

# python-package
# miniconda
# python environment
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 && \
export PATH="$CONDA_DIR/bin:$PATH" && \
Expand All @@ -23,8 +21,7 @@ RUN apt-get update && \
conda install -q -y numpy scipy scikit-learn pandas && \
git clone --recursive --branch stable --depth 1 https://github.com/Microsoft/LightGBM && \
cd LightGBM/python-package && python setup.py install && \

# clean
# clean
apt-get autoremove -y && apt-get clean && \
conda clean -a -y && \
rm -rf /usr/local/src/*
1 change: 0 additions & 1 deletion docker/dockerfile-r
Expand Up @@ -2,7 +2,6 @@ FROM rocker/verse:latest

WORKDIR /lgbm

# R
RUN apt-get update && \
apt-get install -y build-essential && \
git clone --recursive --branch stable --depth 1 https://github.com/Microsoft/LightGBM && \
Expand Down

0 comments on commit 7feaaef

Please sign in to comment.