Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Merge requests
!630
chore: updated go-1.20.5, singularity-3.11.4, docker-23(.0.6)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
chore: updated go-1.20.5, singularity-3.11.4, docker-23(.0.6)
wdconinc-master-patch-23075
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Wouter Deconinck
requested to merge
wdconinc-master-patch-23075
into
master
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
57439485
1 commit,
1 year ago
1 file
+
25
−
19
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
containers/dind/Dockerfile
+
25
−
19
Options
@@ -17,6 +17,7 @@ RUN apt-get update && \
gettext
\
git
\
iptables
\
libglib2.0-dev
\
libgpgme11-dev
\
libseccomp-dev
\
libssl-dev
\
@@ -29,28 +30,33 @@ RUN apt-get update && \
squashfs-tools
\
wget
RUN
cd
/tmp
\
&&
export
VERSION
=
1.15.6
OS
=
linux
ARCH
=
amd64
&&
\
wget https://dl.google.com/go/go
$VERSION
.
$OS
-
$ARCH
.tar.gz
&&
\
tar
-C
/usr/local
-xzvf
go
$VERSION
.
$OS
-
$ARCH
.tar.gz
&&
\
rm
go
$VERSION
.
$OS
-
$ARCH
.tar.gz
# Install Go
ARG
GO_OS=linux
ARG
GO_ARCH=amd64
ARG
GO_VERSION=1.20.5
ARG
GO_URL=https://dl.google.com/go/go${GO_VERSION}.${GO_OS}-${GO_ARCH}.tar.gz
RUN
curl
-L
${
GO_URL
}
|
tar
-C
/usr/local
-xzvf
-
RUN
cd
/tmp
\
&&
export
PATH
=
/usr/local/go/bin:
$PATH
\
&&
export
VERSION
=
3.7.4
&&
\
wget https://github.com/sylabs/singularity/releases/download/v
${
VERSION
}
/singularity-
${
VERSION
}
.tar.gz
&&
\
tar -xzf singularity-${VERSION}.tar.gz && \
cd singularity \
&& ./mconfig && \
make -C builddir && \
make -C builddir install
# Install Singularity CE
ARG
SINGULARITY_VERSION=3.11.4
ARG
SINGULARITY_URL=https://github.com/sylabs/singularity/releases/download/v${SINGULARITY_VERSION}/singularity-ce-${SINGULARITY_VERSION}.tar.gz
RUN
curl
-L
${
SINGULARITY_URL
}
|
tar
-C
/tmp
-xzf
-
\
&&
cd
/tmp/singularity-ce-
${
SINGULARITY_VERSION
}
\
&&
export
PATH
=
/usr/local/go/bin:
$PATH
\
&&
./mconfig
\
&&
make
-C
builddir
\
&&
make
-C
builddir
install
\
&&
rm
-rf
/tmp/singularity-ce-
${
SINGULARITY_VERSION
}
# Install Docker from Docker Inc. repositories.
RUN
export
VERSION
=
20.10.17
\
&&
curl
-sSL
https://get.docker.com/ | sh
# Install the magic wrapper.
# Install Docker
ARG
DOCKER_VERSION=24
ADD
https://get.docker.com/ /tmp/get-docker.sh
RUN
bash /tmp/get-docker.sh
--version
${
DOCKER_VERSION
}
# Install the magic wrapper.
ADD
./wrapdocker /usr/local/bin/wrapdocker
RUN
chmod
+x /usr/local/bin/wrapdocker
# Define additional metadata for our image.
# Define additional metadata for our image.
VOLUME
/var/lib/docker
CMD
["wrapdocker"]
Loading