3 Commits

Author SHA1 Message Date
f378119ad0 - Add file_disenable() function,
- Rebuild for updates.
2025-06-26 17:57:13 +02:00
5095c8d9ac - Add Rx3 testing media source,
- Rebuild for updates.
2025-05-28 17:05:23 +02:00
77ed04d07b - Add i586 arch,
- Rebuild for updates.
2025-04-13 10:37:16 +02:00
4 changed files with 56 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ ARG RX3_SH='export PAGER=less
export MANPAGER="less -isr" \n\ export MANPAGER="less -isr" \n\
export EDITOR=emacs \n\ export EDITOR=emacs \n\
\n\ \n\
function cateval \n\ cateval() \n\
{ \n\ { \n\
while read line \n\ while read line \n\
do \n\ do \n\
@@ -28,6 +28,30 @@ function cateval
done <$1 \n\ done <$1 \n\
} \n\ } \n\
\n\ \n\
export -f cateval \n\
\n\
file_disenable() \n\
{ \n\
fd_file="$1" \n\
fd_state="$2" \n\
\n\
\n\
if [[ "$fd_state" == "TRUE" ]] \n\
then \n\
if [[ ! -f "${fd_file}" ]] \n\
then \n\
mv ${fd_file}.disable ${fd_file} \n\
fi \n\
else \n\
if [[ -f "${fd_file}" ]] \n\
then \n\
mv ${fd_file} ${fd_file}.disable \n\
fi \n\
fi \n\
} \n\
\n\
export -f file_disenable \n\
\n\
alias ll="ls -la" \n\ alias ll="ls -la" \n\
alias em="emacs"' alias em="emacs"'
#--------------------------------------------------------------------------------------------------- #---------------------------------------------------------------------------------------------------
@@ -45,7 +69,7 @@ RUN echo -e "${LOCALE_CONF}" | sed -e 's/ *$//' > /etc/locale.conf
&& rm -f /var/cache/urpmi/mirrors.cache \ && rm -f /var/cache/urpmi/mirrors.cache \
&& urpmi.addmedia --distrib --mirrorlist "${MIRRORLIST_MGA}" \ && urpmi.addmedia --distrib --mirrorlist "${MIRRORLIST_MGA}" \
&& urpmi.addmedia --distrib --mirrorlist "${MIRRORLIST_RX3}" \ && urpmi.addmedia --distrib --mirrorlist "${MIRRORLIST_RX3}" \
&& urpmi.update --no-ignore "Nonfree Release" "Nonfree Updates" "Tainted Release" "Tainted Updates" \ && for arch in "" "32bit "; do for media in "Core" "Nonfree" "Tainted"; do for type in "Release" "Updates"; do urpmi.update --no-ignore "${media} ${arch}${type}"; done; done; done \
&& urpmi.update -a \ && urpmi.update -a \
&& urpmi --force --replacepkgs glibc locales locales-en \ && urpmi --force --replacepkgs glibc locales locales-en \
&& rpm -e $(rpm -qa | grep -e python -e dnf) gobject-introspection \ && rpm -e $(rpm -qa | grep -e python -e dnf) gobject-introspection \

View File

@@ -6,18 +6,18 @@ This project aims to build a Mageia base docker image to be used by other Rx3 pa
Features: Features:
- Curtently based on official Mageia 9 docker image from github.io, - Curtently based on official Mageia 9 docker image from github.io,
- Enable urpmi "Core", "Nonfree" and "Tainted" medium from mirror list: - Enable urpmi "Core", "Nonfree" and "Tainted" medium (x86-64 + i586) from mirror list:
- http://mirror.xor.rx3/, - http://mirror.xor.rx3/,
- https://mirror.rx3.net/, - https://mirror.rx3.net/,
- ftp://ftp.proxad.net/, - ftp://ftp.proxad.net/,
- http://distrib-coffee.ipsl.jussieu.fr/, - http://distrib-coffee.ipsl.jussieu.fr/,
- Enable urpmi "Rx3" media from mirror list: - Enable urpmi "Rx3" default and testings (disabled) media from mirror list:
- http://mirror.xor.rx3/, - http://mirror.xor.rx3/,
- https://mirror.rx3.net/, - https://mirror.rx3.net/,
- Add Rx3 bash seting, - Add Rx3 bash seting,
- Mono layered (Mageia + Rx3 Updates), - Mono layered (Mageia + Rx3 Updates),
- Strip down base (python & dnf removed). - Strip down base (python & dnf removed).
Enjoy it! Enjoy it!

View File

@@ -1,3 +1,29 @@
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/Base V 1.3.4 - A. GIBERT - 2025/06/26
------------------------------------------------------------------------------------------------------------------------------------
- Add file_disenable() function,
- Rebuild for updates.
------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/Base V 1.3.3 - A. GIBERT - 2025/05/28
------------------------------------------------------------------------------------------------------------------------------------
- Add Rx3 testing media source,
- Rebuild for updates.
Rx3-Docker/Base V 1.3.2 - A. GIBERT - 2025/04/13
------------------------------------------------------------------------------------------------------------------------------------
- Add i586 arch,
- Rebuild for updates.
------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------
Rx3-Docker/Base V 1.3.1 - A. GIBERT - 2025/03/08 Rx3-Docker/Base V 1.3.1 - A. GIBERT - 2025/03/08
------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------

View File

@@ -18,7 +18,7 @@ ORG_URL_PREFIX="${ORG_REGISTRY}/${ORG_NAME}"
IMG_NAME="base" IMG_NAME="base"
IMG_NAME_FULL="Rx3-Docker/Base Docker Image" IMG_NAME_FULL="Rx3-Docker/Base Docker Image"
IMG_VERSION="1.3.1-mga9" IMG_VERSION="1.3.4-mga9"
IMG_MAINTAINER='"Arnaud G. GIBERT" <arnaud@rx3.net>' IMG_MAINTAINER='"Arnaud G. GIBERT" <arnaud@rx3.net>'
IMG_URL_PREFIX="${ORG_URL_PREFIX}" IMG_URL_PREFIX="${ORG_URL_PREFIX}"