File tree 3 files changed +5
-7
lines changed
3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
1
# run instructions:
2
- # build image: docker build -t kengz/slm_lab:latest -t kengz/slm_lab:v4.0.0 .
3
- # start container: docker run --name lab -dt kengz/slm_lab
4
- # enter container: docker exec -it lab bash
5
- # remove container (forced): docker rm lab -f
2
+ # build image: docker build -t kengz/slm_lab:latest -t kengz/slm_lab:v4.2.0 .
3
+ # start container: docker run --rm -it kengz/slm_lab:v4.2.0
6
4
# list image: docker images -a
7
5
# push image: docker push kengz/slm_lab
8
6
# prune: docker system prune
@@ -20,7 +18,7 @@ RUN apt-get update && \
20
18
python3-dev zlib1g-dev libjpeg-dev cmake swig python-pyglet python3-opengl libboost-all-dev libsdl2-dev libosmesa6-dev patchelf ffmpeg xvfb && \
21
19
rm -rf /var/lib/apt/lists/*
22
20
23
- RUN curl -O https://repo.continuum.io /miniconda/Miniconda3-latest-Linux-x86_64.sh && \
21
+ RUN curl -O https://repo.anaconda.com /miniconda/Miniconda3-latest-Linux-x86_64.sh && \
24
22
bash Miniconda3-latest-Linux-x86_64.sh -b && \
25
23
rm Miniconda3-latest-Linux-x86_64.sh && \
26
24
echo '. ~/miniconda3/etc/profile.d/conda.sh' >> ~/.bashrc && \
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ echo "--- Installing Conda ---"
27
27
if which conda > /dev/null; then
28
28
echo " Conda is already installed"
29
29
else
30
- curl -O https://repo.continuum.io /miniconda/Miniconda3-latest-MacOSX-x86_64.sh
30
+ curl -O https://repo.anaconda.com /miniconda/Miniconda3-latest-MacOSX-x86_64.sh
31
31
bash Miniconda3-latest-MacOSX-x86_64.sh -b
32
32
rm Miniconda3-latest-MacOSX-x86_64.sh
33
33
echo ' . ~/miniconda3/etc/profile.d/conda.sh' >> ~ /.bash_profile
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ echo "--- Installing Conda ---"
16
16
if which conda > /dev/null; then
17
17
echo " Conda is already installed"
18
18
else
19
- curl -O https://repo.continuum.io /miniconda/Miniconda3-latest-Linux-x86_64.sh
19
+ curl -O https://repo.anaconda.com /miniconda/Miniconda3-latest-Linux-x86_64.sh
20
20
bash Miniconda3-latest-Linux-x86_64.sh -b
21
21
rm Miniconda3-latest-Linux-x86_64.sh
22
22
echo ' . ~/miniconda3/etc/profile.d/conda.sh' >> ~ /.bashrc
You can’t perform that action at this time.
0 commit comments