20 lines
687 B
Bash
20 lines
687 B
Bash
#!/bin/sh
|
|
export LANG=C.UTF-8 LC_ALL=C.UTF-8
|
|
export PATH=/opt/conda/bin:$PATH
|
|
|
|
apt-get update --fix-missing && \
|
|
apt-get install -y wget bzip2 ca-certificates curl git && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh && \
|
|
/bin/bash ~/miniconda.sh -b -p /opt/conda && \
|
|
rm ~/miniconda.sh && \
|
|
/opt/conda/bin/conda clean -tipy && \
|
|
ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \
|
|
echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && \
|
|
echo "conda activate base" >> ~/.bashrc
|
|
|
|
export TINI_VERSION=v0.16.1
|
|
source ~/.bashrc
|