Skip to content
Snippets Groups Projects
Commit 02650d4c authored by Alexis Mergez's avatar Alexis Mergez
Browse files

v1.5.1

Added JuliaEnv image
parent c6991052
No related branches found
No related tags found
No related merge requests found
Bootstrap: docker
From: ubuntu:22.04
Stage: build
%environment
export TZ="Europe/Paris"
export DEBIAN_FRONTEND="noninteractive"
export PATH="/apps/bin:$PATH"
%post
export TZ="Europe/Paris"
export DEBIAN_FRONTEND="noninteractive"
apt-get update && apt-get upgrade -y \
&& apt-get install -y \
wget \
&& apt-get clean \
&& apt-get purge \
&& rm -rf /var/lib/apt/lists/*
export PATH="/apps/bin:$PATH"
mkdir -p /apps/bin && cd /apps
# Installing julia
wget --no-check-certificate https://julialang-s3.julialang.org/bin/linux/x64/1.10/julia-1.10.0-linux-x86_64.tar.gz
tar -xzvf julia-1.10.0-linux-x86_64.tar.gz
cd julia-1.10.0
ln -s /apps/julia-1.10.0/bin/julia /apps/bin/julia
julia -e 'using Pkg;Pkg.add("BioGraph")'
%test
julia --version
%runscript
exec julia "$@"
%labels
Author alexis.mergez@inrae.fr
Version VERSION_NUMBER
julia.Version 1.10.0
about.repo https://forgemia.inra.fr/alexis.mergez/pangetools
%help
This is an unofficial container for julia env v1.10.0.
\ No newline at end of file
......@@ -3,7 +3,6 @@ From: ubuntu:20.04
Stage: build
%environment
export PATH="/root/.cargo/bin:/apps/bin:${PATH}"
export TZ="Europe/Paris"
export DEBIAN_FRONTEND="noninteractive"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment