mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-21 01:55:07 -05:00
30 lines
828 B
Docker
30 lines
828 B
Docker
FROM mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04:20200423.v1
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
python-opengl \
|
|
rsync \
|
|
xvfb && \
|
|
apt-get clean -y && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
rm -rf /usr/share/man/*
|
|
|
|
RUN conda install -y conda=4.7.12 python=3.7 && conda clean -ay && \
|
|
pip install --no-cache-dir \
|
|
azureml-defaults \
|
|
azureml-dataset-runtime[fuse,pandas] \
|
|
azureml-contrib-reinforcementlearning \
|
|
gputil \
|
|
cloudpickle==1.3.0 \
|
|
tensorboardX \
|
|
tensorflow==1.14.0 \
|
|
tabulate \
|
|
dm_tree \
|
|
lz4 \
|
|
ray==0.8.3 \
|
|
ray[rllib,dashboard,tune]==0.8.3 \
|
|
psutil \
|
|
setproctitle \
|
|
gym[atari] && \
|
|
conda install -y -c conda-forge x264='1!152.20180717' ffmpeg=4.0.2 && \
|
|
conda install -c anaconda opencv
|