-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile for new image to install on Alma9
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
FROM gitlab-registry.cern.ch/linuxsupport/alma9-base | ||
|
||
LABEL product="iLCSoft-cvmfs-install-alma9" | ||
LABEL maintainer="[email protected]" | ||
LABEL description="Image to install iLCSoft on CVMFS for Alma9" | ||
LABEL os="Alma9" | ||
|
||
RUN dnf update -y && \ | ||
dnf groupinstall -y "Development Tools" && \ | ||
dnf install -y \ | ||
curl \ | ||
wget \ | ||
openssl-devel \ | ||
freeglut-devel \ | ||
tar \ | ||
bzip2 \ | ||
which \ | ||
libX11-devel \ | ||
libXext-devel \ | ||
libXmu-devel \ | ||
libXft-devel \ | ||
libXpm-devel \ | ||
doxygen \ | ||
libuuid-devel \ | ||
perl-core \ | ||
glibc-locale-source \ | ||
glibc-langpack-en \ | ||
subversion && \ | ||
dnf clean all && rm -rf /var/cache/yum | ||
|
||
ENV LANG=en_US.UTF-8 \ | ||
LANGUAGE=en_US:en \ | ||
LC_ALL=en_US.UTF-8 \ | ||
LC_CTYPE=en_US.UTF-8 | ||
|
||
RUN localedef -i en_US -f UTF-8 en_US.UTF-8 | ||
|
||
CMD ["/bin/bash"] |