-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
22 lines (18 loc) · 787 Bytes
/
Dockerfile
File metadata and controls
22 lines (18 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM ubuntu:latest
ENV PATH="/root/miniconda3/bin:${PATH}"
ARG PATH="/root/miniconda3/bin:${PATH}"
RUN apt-get update \
&& apt-get install -yq tzdata sudo jq \
&& ln -fs /usr/share/zoneinfo/Asia/Dubai /etc/localtime \
&& dpkg-reconfigure -f noninteractive tzdata \
&& apt-get install -y wget graphviz libgraphviz-dev unzip git sudo \
&& rm -rf /var/lib/apt/lists/*
RUN wget \
https://repo.anaconda.com/miniconda/Miniconda3-py37_4.11.0-Linux-x86_64.sh \
&& mkdir /root/.conda \
&& bash Miniconda3-py37_4.11.0-Linux-x86_64.sh -b \
&& rm -f Miniconda3-py37_4.11.0-Linux-x86_64.sh
RUN conda update -n base -c defaults conda -y \
&& conda init bash \
&& conda install -y nb_conda pandas matplotlib autopep8 ipykernel seaborn \
&& conda clean -a