Skip to content
This repository was archived by the owner on Apr 1, 2022. It is now read-only.

Commit 0634ad9

Browse files
author
Pavel Sobolev
authored
(#12) Update Julia and the base image:
* Update to Julia `1.5.1`; * Let the user's group own `/usr/other/$USER`; * Update the base image to the version `0.1.2`.
1 parent fc3338f commit 0634ad9

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Base image
2-
FROM paveloom/binder-base:0.1.1
2+
FROM paveloom/binder-base:0.1.2
33

44
# Meta information
55
LABEL maintainer="Pavel Sobolev (https://github.com/Paveloom)"
6-
LABEL version="0.1.0"
6+
LABEL version="0.1.1"
77
LABEL description="Basically, `paveloom/binder-base` + Julia."
88
LABEL github-repository="https://github.com/paveloom-d/binder-julia"
99
LABEL docker-repository="https://hub.docker.com/r/paveloom/binder-julia"

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ description, see under the spoiler:
1818
<li>
1919
Base image:
2020
<a href="https://github.com/paveloom-d/binder-base">paveloom/binder-base</a>
21-
(0.1.1)
21+
(0.1.2)
2222
</li>
23-
<li>Julia (1.5.0)</li>
23+
<li>Julia (1.5.1)</li>
2424
<ul>
2525
<li>Packages</li>
2626
<ul>
@@ -41,6 +41,7 @@ FROM paveloom/binder-julia:tag
4141

4242
where the `tag` is one of the following:
4343

44+
* [0.1.1](https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.1)
4445
* [0.1.0](https://github.com/paveloom-d/binder-julia/releases/tag/v0.1.0)
4546

4647
### Can I easily see what it looks like?

binder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Base image
2-
FROM paveloom/binder-julia:0.1.0
2+
FROM paveloom/binder-julia:0.1.1

scripts/user/julia/install-julia.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
echo '\n\e[1;36mInstalling Julia:\e[0m'
44

55
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
77

88
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
1010

1111
echo '\e[1;36m> Extracting the tarball...\e[0m'
1212
tar -xf /usr/other/$USER/julia/julia*.tar.gz -C /usr/other/$USER/julia --strip-components 1

0 commit comments

Comments
 (0)