forked from pool/minimal-image
[info=3817cf0fe935d46f10ee87ca30fa8d4f]
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/minimal-image?expand=0&rev=148
This commit is contained in:
commit
6766e2b27c
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
21
README.md
Normal file
21
README.md
Normal file
@ -0,0 +1,21 @@
|
||||
# openSUSE Tumbleweed BCI Minimal: Base Container image without Zypper
|
||||
![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green)
|
||||
|
||||
## Description
|
||||
This image comes without Zypper, but it does have the RPM package manager installed.
|
||||
While RPM can install and remove packages, it lacks support for repositories and automated dependency resolution.
|
||||
It is therefore intended for creating deployment containers, and then installing the desired
|
||||
RPM packages inside the containers.
|
||||
|
||||
While you can install the required dependencies, you need to download and resolve them manually.
|
||||
However, this approach is not recommended as it is prone to errors.
|
||||
|
||||
## Licensing
|
||||
|
||||
`SPDX-License-Identifier: MIT`
|
||||
|
||||
This documentation and the build recipe are licensed as MIT.
|
||||
The container itself contains various software components under various open source licenses listed in the associated
|
||||
Software Bill of Materials (SBOM).
|
||||
|
||||
This image is based on [openSUSE Tumbleweed](https://get.opensuse.org/tumbleweed/).
|
4
_service
Normal file
4
_service
Normal file
@ -0,0 +1,4 @@
|
||||
<services>
|
||||
<service mode="buildtime" name="kiwi_label_helper"/>
|
||||
<service mode="buildtime" name="kiwi_metainfo_helper"/>
|
||||
</services>
|
37
config.sh
Normal file
37
config.sh
Normal file
@ -0,0 +1,37 @@
|
||||
#!/bin/bash
|
||||
# SPDX-License-Identifier: MIT
|
||||
# SPDX-FileCopyrightText: (c) 2022-2024 SUSE LLC
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
test -f /.kconfig && . /.kconfig
|
||||
test -f /.profile && . /.profile
|
||||
|
||||
echo "Configure image: [$kiwi_iname]..."
|
||||
|
||||
#============================================
|
||||
# Import repositories' keys if rpm is present
|
||||
#--------------------------------------------
|
||||
if command -v rpm > /dev/null; then
|
||||
suseImportBuildKey
|
||||
fi
|
||||
|
||||
|
||||
#==========================================
|
||||
# Remove compat-usrmerge-tools if installed
|
||||
#------------------------------------------
|
||||
if rpm -q compat-usrmerge-tools; then
|
||||
rpm -e compat-usrmerge-tools
|
||||
fi
|
||||
|
||||
|
||||
#=======================================
|
||||
# Clean up after zypper if it is present
|
||||
#---------------------------------------
|
||||
if command -v zypper > /dev/null; then
|
||||
zypper -n clean
|
||||
fi
|
||||
|
||||
rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
|
||||
|
||||
exit 0
|
125
minimal-image.changes
Normal file
125
minimal-image.changes
Normal file
@ -0,0 +1,125 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 31 12:06:44 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- set specific lifecycle url for openSUSE BCI
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 16 15:20:06 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- Re-render templates (no functional change)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 10 15:11:25 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- update README; reduce unnecessary newlines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 5 15:13:27 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- Don't add artifacthub labels into labelprefix section
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 4 12:35:15 UTC 2024 - Alexandre Vicenzi <alexandre.vicenzi@suse.com>
|
||||
|
||||
- Fix grammar mistake in licensing footer
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 15 13:43:21 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- Remove duplication from the image title
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 8 16:26:31 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- README fixes - better titles and follow recommended document structure
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 7 19:07:24 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- extend READMEs; correct eula for application images
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 19 10:31:30 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- Bump kiwi schema version
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 12 12:03:53 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- Don't wipe everything in /var/log, only remove log files (this omits directories owned by packages)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 4 17:37:20 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- add a shared licensing footer to the base container READMEs
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 22 17:20:58 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- add readme and logo urls
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 17 14:29:14 UTC 2024 - Dan Čermák <dcermak@suse.com>
|
||||
|
||||
- Add initial README stub
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 2 08:26:58 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- update year to 2024
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 28 14:29:10 UTC 2023 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- add copyright and description header
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 9 14:54:19 UTC 2023 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- Remove unnecessary usrmerge compat package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 12 12:52:48 UTC 2023 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- Replace distribution-release with openSUSE-release and openSUSE-release-appliance-docker
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 10 10:06:53 UTC 2023 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- Remove perl from the base image, rpm doesn't require it
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 23 15:33:33 UTC 2023 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- label capitalization and related cleanups
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 30 06:52:56 UTC 2023 - Dan Čermák <dcermak@suse.com>
|
||||
|
||||
- Add release stage and lifecycle url
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 26 06:18:56 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- switch versioning to rolling Tumbleweed schema
|
||||
- Correct org.opensuse.reference label
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 3 07:24:36 UTC 2023 - Dan Čermák <dcermak@suse.com>
|
||||
|
||||
- Add org.opencontainers.image.source label set to %SOURCEURL%
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 2 12:22:14 UTC 2023 - Dan Čermák <dcermak@suse.com>
|
||||
|
||||
- Bump copyright year
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 12 15:13:44 UTC 2022 - Dan Čermák <dcermak@suse.com>
|
||||
|
||||
- Convert SLE specific parts to openSUSE
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 28 10:15:45 UTC 2022 - Dan Čermák <dcermak@suse.com>
|
||||
|
||||
- Ensure that /var/log/zypp is not present in the image
|
73
minimal-image.kiwi
Normal file
73
minimal-image.kiwi
Normal file
@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- SPDX-License-Identifier: MIT -->
|
||||
<!--
|
||||
Copyright (c) 2024 SUSE LLC
|
||||
|
||||
All modifications and additions to the file contributed by third parties
|
||||
remain the property of their copyright owners, unless otherwise agreed
|
||||
upon.
|
||||
|
||||
The content of THIS FILE IS AUTOGENERATED and should not be manually modified.
|
||||
It is maintained by the BCI team and generated by
|
||||
https://github.com/SUSE/BCI-dockerfile-generator
|
||||
|
||||
Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
You can contact the BCI team via https://github.com/SUSE/bci/discussions
|
||||
-->
|
||||
<!-- OBS-AddTag: opensuse/bci/bci-minimal:%OS_VERSION_ID_SP% opensuse/bci/bci-minimal:%OS_VERSION_ID_SP%.%RELEASE% opensuse/bci/bci-minimal:latest -->
|
||||
<!-- OBS-Imagerepo: obsrepositories:/ -->
|
||||
|
||||
<image schemaversion="7.4" name="minimal-image" xmlns:suse_label_helper="com.suse.label_helper">
|
||||
<description type="system">
|
||||
<author>openSUSE Project</author>
|
||||
<contact>https://www.suse.com/</contact>
|
||||
<specification>openSUSE Tumbleweed BCI Minimal Container Image</specification>
|
||||
</description>
|
||||
<preferences>
|
||||
<type image="docker" derived_from="obsrepositories:/opensuse/bci/bci-micro#latest">
|
||||
<containerconfig
|
||||
name="opensuse/bci/bci-minimal"
|
||||
tag="%OS_VERSION_ID_SP%"
|
||||
additionaltags="%OS_VERSION_ID_SP%.%RELEASE%,latest"
|
||||
maintainer="openSUSE (https://www.opensuse.org/)">
|
||||
<labels>
|
||||
<suse_label_helper:add_prefix prefix="org.opensuse.bci.minimal">
|
||||
<label name="org.opencontainers.image.title" value="openSUSE Tumbleweed BCI Minimal"/>
|
||||
<label name="org.opencontainers.image.description" value="Minimal container based on the openSUSE Tumbleweed Base Container Image."/>
|
||||
<label name="org.opencontainers.image.version" value="%OS_VERSION_ID_SP%.%RELEASE%"/>
|
||||
<label name="org.opencontainers.image.created" value="%BUILDTIME%"/>
|
||||
<label name="org.opencontainers.image.vendor" value="openSUSE Project"/>
|
||||
<label name="org.opencontainers.image.source" value="%SOURCEURL%"/>
|
||||
<label name="org.opencontainers.image.url" value="https://www.opensuse.org"/>
|
||||
<label name="org.opensuse.reference" value="registry.opensuse.org/opensuse/bci/bci-minimal:%OS_VERSION_ID_SP%.%RELEASE%"/>
|
||||
<label name="org.openbuildservice.disturl" value="%DISTURL%"/>
|
||||
<label name="org.opensuse.release-stage" value="released"/>
|
||||
<label name="org.opensuse.lifecycle-url" value="https://en.opensuse.org/Lifetime#openSUSE_BCI"/>
|
||||
</suse_label_helper:add_prefix>
|
||||
<label name="io.artifacthub.package.readme-url" value="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/minimal-image/README.md"/>
|
||||
<label name="io.artifacthub.package.logo-url" value="https://opensource.suse.com/bci/SLE_BCI_logomark_green.svg"/>
|
||||
</labels>
|
||||
</containerconfig>
|
||||
</type>
|
||||
<version>2024</version>
|
||||
<packagemanager>zypper</packagemanager>
|
||||
<rpm-check-signatures>false</rpm-check-signatures>
|
||||
<rpm-excludedocs>true</rpm-excludedocs>
|
||||
</preferences>
|
||||
<repository type="rpm-md">
|
||||
<source path="obsrepositories:/"/>
|
||||
</repository>
|
||||
<packages type="delete">
|
||||
<package name="grep"/>
|
||||
<package name="diffutils"/>
|
||||
<package name="info"/>
|
||||
<package name="fillup"/>
|
||||
<package name="libzio1"/>
|
||||
</packages>
|
||||
<packages type="bootstrap">
|
||||
<package name="openSUSE-release"/>
|
||||
<package name="openSUSE-release-appliance-docker"/>
|
||||
<package name="rpm"/>
|
||||
</packages>
|
||||
|
||||
</image>
|
Loading…
Reference in New Issue
Block a user