This repository was archived by the owner on Apr 1, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Base image
2
- FROM paveloom/binder-base:0.1.1
2
+ FROM paveloom/binder-base:0.1.2
3
3
4
4
# Meta information
5
5
LABEL maintainer="Pavel Sobolev (https://github.com/Paveloom)"
6
- LABEL version="0.1.0 "
6
+ LABEL version="0.1.1 "
7
7
LABEL description="Basically, `paveloom/binder-base` + Julia."
8
8
LABEL github-repository="https://github.com/paveloom-d/binder-julia"
9
9
LABEL docker-repository="https://hub.docker.com/r/paveloom/binder-julia"
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ description, see under the spoiler:
18
18
<li >
19
19
Base image:
20
20
<a href="https://github.com/paveloom-d/binder-base">paveloom/binder-base</a>
21
- (0.1.1 )
21
+ (0.1.2 )
22
22
</li >
23
- <li >Julia (1.5.0 )</li >
23
+ <li >Julia (1.5.1 )</li >
24
24
<ul >
25
25
<li>Packages</li>
26
26
<ul>
@@ -41,6 +41,7 @@ FROM paveloom/binder-julia:tag
41
41
42
42
where the ` tag ` is one of the following:
43
43
44
+ * [ 0.1.1] ( https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.1 )
44
45
* [ 0.1.0] ( https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.0 )
45
46
46
47
### Can I easily see what it looks like?
Original file line number Diff line number Diff line change 1
1
# Base image
2
- FROM paveloom/binder-julia:0.1.0
2
+ FROM paveloom/binder-julia:0.1.1
Original file line number Diff line number Diff line change 3
3
echo ' \n\e[1;36mInstalling Julia:\e[0m'
4
4
5
5
echo ' \e[1;36m> Creating a hidden folder for the user...\e[0m'
6
- sudo mkdir -p /usr/other/$USER && sudo chown -R $USER : $USER /usr/other/$USER
6
+ sudo mkdir -p /usr/other/$USER && sudo chgrp -R $USER /usr/other/ $USER && sudo chmod -R g+w /usr/other/$USER
7
7
8
8
echo ' \e[1;36m> Downloading the tarball...\e[0m'
9
- wget https://julialang-s3.julialang.org/bin/linux/x64/1.5/julia-1.5.0 -linux-x86_64.tar.gz -P /usr/other/$USER /julia > /dev/null 2>&1
9
+ wget https://julialang-s3.julialang.org/bin/linux/x64/1.5/julia-1.5.1 -linux-x86_64.tar.gz -P /usr/other/$USER /julia > /dev/null 2>&1
10
10
11
11
echo ' \e[1;36m> Extracting the tarball...\e[0m'
12
12
tar -xf /usr/other/$USER /julia/julia* .tar.gz -C /usr/other/$USER /julia --strip-components 1
You can’t perform that action at this time.
0 commit comments