This repository was archived by the owner on Jan 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Arrange order to minimize rebuilds. Things that change more often
2+ # are last
3+ FROM ubuntu:20.04
4+
5+ # Proxies for working inside firewall
6+ ENV no_proxy=.intel.com
7+ ENV https_proxy=http://proxy-chain.intel.com:912
8+ ENV http_proxy=http://proxy-chain.intel.com:911
9+ ENV ftp_proxy=http://proxy-chain.intel.com:911
10+
11+ RUN export DEBIAN_FRONTEND=noninteractive \
12+ && apt-get update \
13+ && apt-get install -y --no-install-recommends g++ gcc wget \
14+ && apt-get clean \
15+ && rm -rf /var/lib/apt/lists/*
16+
17+ ENV MINICONDA=Miniconda3-latest-Linux-x86_64.sh
18+ RUN wget -q --no-check-certificate https://repo.anaconda.com/miniconda/$MINICONDA \
19+ && chmod a+rwx $MINICONDA \
20+ && ./$MINICONDA -b \
21+ && rm ./$MINICONDA \
22+ && /root/miniconda3/bin/conda update -n base -c defaults conda
23+
24+ ENV PATH=${PATH}:/root/miniconda3/bin
25+
26+ SHELL ["/bin/bash" , "--login" , "-c" ]
27+ ENTRYPOINT ["/bin/bash" , "--login" , "-c" ]
You can’t perform that action at this time.
0 commit comments