-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
5 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
FROM conda/miniconda3 | ||
|
||
RUN conda update -n base -c defaults conda -y | ||
|
||
# curl is needed to get credentials when using IAM_ROLE | ||
RUN apt-get -y update ; \ | ||
apt-get -y install curl | ||
|
||
|
||
# conda install package | ||
RUN conda install -y numpy ; \ | ||
conda install -y aiobotocore=0.10.0 ; \ | ||
conda install -y aiobotocore ; \ | ||
conda install -y pytz ; \ | ||
conda install -y requests ; \ | ||
conda install psutil ; \ | ||
conda install numba ; \ | ||
pip install kubernetes | ||
conda install -y psutil ; \ | ||
conda install -y numba ; \ | ||
pip install kubernetes |