Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tianlh
LightGBM-DCU
Commits
7feaaefb
Unverified
Commit
7feaaefb
authored
Nov 11, 2019
by
James Lamb
Committed by
GitHub
Nov 11, 2019
Browse files
[docs][docker] cleaned up CODEOWNERS and fixed build warning in dockerfile-python (#2555)
parent
31bec2fb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
7 deletions
+13
-7
.github/CODEOWNERS
.github/CODEOWNERS
+11
-1
docker/dockerfile-python
docker/dockerfile-python
+2
-5
docker/dockerfile-r
docker/dockerfile-r
+0
-1
No files found.
.github/CODEOWNERS
View file @
7feaaefb
...
@@ -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
...
...
docker/dockerfile-python
View file @
7feaaefb
...
@@ -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/*
docker/dockerfile-r
View file @
7feaaefb
...
@@ -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 && \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment