File Dockerfile of Package openSUSE_TW_rapido
#!BuildTag: opensuse_tw_rapido:latest
FROM opensuse_tw:latest
RUN zypper --non-interactive ar "https://download.opensuse.org/repositories/benchmark:/ltp:/stable/openSUSE_Factory/benchmark:ltp:stable" ltp_stable
RUN zypper --non-interactive install \
# rapido install \
git-core \
# rapido build \
dracut \
# kselftests debug \
strace
# kselftest, LTP and some of its Recommends: :-/
RUN zypper --non-interactive install --recommends \
ltp-stable \
expect \
e2fsprogs \
iproute2 \
psmisc \
which \
xterm-resize
# exfatprogs conflicts with exfat-utils
# kernel-default-extra nothing provides it
#!RemoteAssetUrl: https://github.com/rapido-linux/rapido/archive/refs/heads/master.tar.gz
COPY master.tar.gz .
RUN mkdir -p /opt/rapido && tar xf master.tar.gz --strip-components=1 -C /opt/rapido
ENTRYPOINT ["/opt/rapido/rapido"]