This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
functional windows lightgbm images (#144)
- Loading branch information
Showing
3 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM mcr.microsoft.com/azureml/windows-servercore-1809:latest | ||
LABEL lightgbmbenchmark.windows.cpu.mpi.pip.version="3.2.1/20211103.1" | ||
|
||
ENV AZUREML_CONDA_ENVIRONMENT_PATH /azureml-envs/lightgbm | ||
|
||
# Create conda environment | ||
RUN conda create -p $AZUREML_CONDA_ENVIRONMENT_PATH \ | ||
python=3.8 pip=20.2.4 | ||
|
||
# Prepend path to AzureML conda environment | ||
#ENV PATH $AZUREML_CONDA_ENVIRONMENT_PATH/bin:$PATH | ||
|
||
# Install pip dependencies | ||
RUN pip install 'pandas>=1.1,<1.2' \ | ||
'numpy>=1.10,<1.20' \ | ||
'scipy~=1.5.0' \ | ||
'scikit-learn~=0.24.1' \ | ||
'azureml-core==1.30.0' \ | ||
'azureml-defaults==1.30.0' \ | ||
'azureml-mlflow==1.30.0' \ | ||
'azureml-telemetry==1.30.0' \ | ||
'lightgbm==3.2.1' | ||
|
||
# This is needed for mpi to locate libpython | ||
ENV LD_LIBRARY_PATH $AZUREML_CONDA_ENVIRONMENT_PATH/lib:$LD_LIBRARY_PATH | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM mcr.microsoft.com/azureml/windows-servercore-1809:latest | ||
LABEL lightgbmbenchmark.windows.cpu.mpi.pip.version="3.3.0/20211103.1" | ||
|
||
ENV AZUREML_CONDA_ENVIRONMENT_PATH /azureml-envs/lightgbm | ||
|
||
# Create conda environment | ||
RUN conda create -p $AZUREML_CONDA_ENVIRONMENT_PATH \ | ||
python=3.8 pip=20.2.4 | ||
|
||
# Prepend path to AzureML conda environment | ||
#ENV PATH $AZUREML_CONDA_ENVIRONMENT_PATH/bin:$PATH | ||
|
||
# Install pip dependencies | ||
RUN pip install 'pandas>=1.1,<1.2' \ | ||
'numpy>=1.10,<1.20' \ | ||
'scipy~=1.5.0' \ | ||
'scikit-learn~=0.24.1' \ | ||
'azureml-core==1.30.0' \ | ||
'azureml-defaults==1.30.0' \ | ||
'azureml-mlflow==1.30.0' \ | ||
'azureml-telemetry==1.30.0' \ | ||
'lightgbm==3.3.0' | ||
|
||
# This is needed for mpi to locate libpython | ||
ENV LD_LIBRARY_PATH $AZUREML_CONDA_ENVIRONMENT_PATH/lib:$LD_LIBRARY_PATH | ||
|