Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit fe43b43

Browse files
committed
adding Dockerfile
1 parent 9bcc719 commit fe43b43

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

docker/Dockerfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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"]

0 commit comments

Comments
 (0)