SHA256
1
0
forked from pool/micro-image

Compare commits

...

16 Commits

Author SHA256 Message Date
Ana Guerrero
cf919974e8 Accepting request 1240965 from devel:BCI:Tumbleweed
🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1240965
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/micro-image?expand=0&rev=32
2025-01-29 15:15:48 +00:00
be312d4c31 [info=bc4b68c29f4279588aa1cbe8f59fa8517251c54e]
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/micro-image?expand=0&rev=250
2025-01-28 18:30:43 +00:00
Ana Guerrero
9dd1c24318 Accepting request 1234366 from devel:BCI:Tumbleweed
🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1234366
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/micro-image?expand=0&rev=31
2025-01-02 18:20:52 +00:00
04be51dc4b [info=1adefe8aa0c736558416b73f7800c0fc]
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/micro-image?expand=0&rev=240
2025-01-01 14:16:46 +00:00
Dominique Leuenberger
f7a557c2d3 Accepting request 1219645 from devel:BCI:Tumbleweed
🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1219645
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/micro-image?expand=0&rev=30
2024-10-30 21:57:41 +00:00
1d87766338 [info=3fc01187cf5ec563c720c02bdd77c84e]
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/micro-image?expand=0&rev=215
2024-10-30 15:39:57 +00:00
Dominique Leuenberger
6b401be7b8 Accepting request 1207441 from devel:BCI:Tumbleweed
🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1207441
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/micro-image?expand=0&rev=29
2024-10-13 15:33:40 +00:00
Dominique Leuenberger
d35cc679ab Accepting request 1207265 from devel:BCI:Tumbleweed
🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1207265
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/micro-image?expand=0&rev=28
2024-10-12 11:30:05 +00:00
316363d5cc [info=adc9bf3c361442ead031998fa3535466]
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/micro-image?expand=0&rev=204
2024-10-11 15:25:36 +00:00
9cf4e0a1ad [info=a8148d61e00d4e8f204e6f27040d568b]
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/micro-image?expand=0&rev=203
2024-10-11 15:05:24 +00:00
Ana Guerrero
f8c7a9f084 Accepting request 1204328 from devel:BCI:Tumbleweed
🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1204328
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/micro-image?expand=0&rev=27
2024-09-29 16:13:00 +00:00
1f29e53fa3 [info=f361f2c2818ad3da47911f49ca5ea746]
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/micro-image?expand=0&rev=196
2024-09-28 08:19:12 +00:00
Ana Guerrero
942063d845 Accepting request 1203643 from devel:BCI:Tumbleweed
🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1203643
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/micro-image?expand=0&rev=26
2024-09-25 19:57:45 +00:00
543dcc42fd [info=9b231124b160b7e8711d75c2b4fc7980]
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/micro-image?expand=0&rev=194
2024-09-25 17:17:50 +00:00
Ana Guerrero
207e008736 Accepting request 1200868 from devel:BCI:Tumbleweed
🤖: sync package with devel:BCI:Tumbleweed from OBS

OBS-URL: https://build.opensuse.org/request/show/1200868
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/micro-image?expand=0&rev=25
2024-09-15 10:36:16 +00:00
6fc1cc8575 [info=be27e2f798257ef043251dc8a6494444]
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/micro-image?expand=0&rev=179
2024-09-13 13:55:31 +00:00
5 changed files with 53 additions and 14 deletions

View File

@ -19,14 +19,14 @@ dependencies and needs no further installation of packages.
Example using a Go application: Example using a Go application:
```Dockerfile ```Dockerfile
FROM registry.suse.com/bci/golang:stable as build FROM registry.opensuse.org/opensuse/bci/golang:stable as build
WORKDIR /app WORKDIR /app
RUN go install github.com/go-training/helloworld@latest RUN go install github.com/go-training/helloworld@latest
# Create an image to bundle the app # Create an image to bundle the app
FROM registry.suse.com/bci/bci-micro:latest FROM registry.opensuse.org/opensuse/bci/bci-micro:latest
COPY --from=build /go/bin/helloworld /usr/local/bin/helloworld COPY --from=build /go/bin/helloworld /usr/local/bin/helloworld

5
_scmsync.obsinfo Normal file
View File

@ -0,0 +1,5 @@
mtime: 1735740828
commit: 8720cff6b7dc48da6eab529ec066581a09603659
url: https://github.com/SUSE/bci-dockerfile-generator
revision: Tumbleweed
subdir: micro-image

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: (c) 2022-2024 SUSE LLC # SPDX-FileCopyrightText: (c) 2022-2025 SUSE LLC
set -euo pipefail set -euo pipefail
@ -26,6 +26,6 @@ if command -v zypper > /dev/null; then
zypper -n clean zypper -n clean
fi fi
rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2} rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}
exit 0 exit 0

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Jan 1 14:13:48 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
- update copyright year
-------------------------------------------------------------------
Wed Oct 30 15:34:45 UTC 2024 - SUSE Update Bot <bci-internal@suse.de>
- remove nonsensical org.opencontainers.image.authors - duplication of .vendor
-------------------------------------------------------------------
Fri Oct 11 15:12:52 UTC 2024 - SUSE Update Bot <bci-internal@suse.de>
- make the tag with -%RELEASE% the first tag listed
-------------------------------------------------------------------
Fri Oct 11 15:00:03 UTC 2024 - SUSE Update Bot <bci-internal@suse.de>
- switch to the more standard - separator also for OsContainers
-------------------------------------------------------------------
Sat Sep 28 08:15:08 UTC 2024 - Dirk Mueller <dmueller@suse.com>
- fix registry references in READMEs
-------------------------------------------------------------------
Wed Sep 25 17:12:11 UTC 2024 - Dirk Mueller <dmueller@suse.com>
- improved log cleaning
-------------------------------------------------------------------
Fri Sep 13 09:56:19 UTC 2024 - Dirk Mueller <dmueller@suse.com>
- Remove trailing whitespace
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 8 19:28:10 UTC 2024 - Dirk Mueller <dmueller@suse.com> Thu Aug 8 19:28:10 UTC 2024 - Dirk Mueller <dmueller@suse.com>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- SPDX-License-Identifier: MIT --> <!-- SPDX-License-Identifier: MIT -->
<!-- <!--
Copyright (c) 2024 SUSE LLC Copyright (c) 2025 SUSE LLC
All modifications and additions to the file contributed by third parties All modifications and additions to the file contributed by third parties
remain the property of their copyright owners, unless otherwise agreed remain the property of their copyright owners, unless otherwise agreed
@ -14,7 +14,7 @@ https://github.com/SUSE/BCI-dockerfile-generator
Please submit bugfixes or comments via https://bugs.opensuse.org/ Please submit bugfixes or comments via https://bugs.opensuse.org/
You can contact the BCI team via https://github.com/SUSE/bci/discussions You can contact the BCI team via https://github.com/SUSE/bci/discussions
--> -->
<!-- OBS-AddTag: opensuse/bci/bci-micro:%OS_VERSION_ID_SP% opensuse/bci/bci-micro:%OS_VERSION_ID_SP%.%RELEASE% opensuse/bci/bci-micro:latest --> <!-- OBS-AddTag: opensuse/bci/bci-micro:%OS_VERSION_ID_SP%-%RELEASE% opensuse/bci/bci-micro:%OS_VERSION_ID_SP% opensuse/bci/bci-micro:latest -->
<!-- OBS-Imagerepo: obsrepositories:/ --> <!-- OBS-Imagerepo: obsrepositories:/ -->
<image schemaversion="7.4" name="micro-image" xmlns:suse_label_helper="com.suse.label_helper"> <image schemaversion="7.4" name="micro-image" xmlns:suse_label_helper="com.suse.label_helper">
@ -27,20 +27,19 @@ You can contact the BCI team via https://github.com/SUSE/bci/discussions
<type image="docker"> <type image="docker">
<containerconfig <containerconfig
name="opensuse/bci/bci-micro" name="opensuse/bci/bci-micro"
tag="%OS_VERSION_ID_SP%" tag="%OS_VERSION_ID_SP%-%RELEASE%"
additionaltags="%OS_VERSION_ID_SP%.%RELEASE%,latest"> additionaltags="%OS_VERSION_ID_SP%,latest">
<labels> <labels>
<suse_label_helper:add_prefix prefix="org.opensuse.bci.micro"> <suse_label_helper:add_prefix prefix="org.opensuse.bci.micro">
<label name="org.opencontainers.image.authors" value="openSUSE (https://www.opensuse.org/)"/>
<label name="org.opencontainers.image.title" value="openSUSE Tumbleweed BCI Micro"/> <label name="org.opencontainers.image.title" value="openSUSE Tumbleweed BCI Micro"/>
<label name="org.opencontainers.image.description" value="A micro environment for containers based on the openSUSE Tumbleweed Base Container Image."/> <label name="org.opencontainers.image.description" value="A micro environment for containers 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.version" value="%OS_VERSION_ID_SP%-%RELEASE%"/>
<label name="org.opencontainers.image.created" value="%BUILDTIME%"/> <label name="org.opencontainers.image.created" value="%BUILDTIME%"/>
<label name="org.opencontainers.image.vendor" value="openSUSE Project"/> <label name="org.opencontainers.image.vendor" value="openSUSE Project"/>
<label name="org.opencontainers.image.source" value="%SOURCEURL%"/> <label name="org.opencontainers.image.source" value="%SOURCEURL%"/>
<label name="org.opencontainers.image.url" value="https://www.opensuse.org"/> <label name="org.opencontainers.image.url" value="https://www.opensuse.org"/>
<label name="org.opencontainers.image.ref.name" value="%OS_VERSION_ID_SP%.%RELEASE%"/> <label name="org.opencontainers.image.ref.name" value="%OS_VERSION_ID_SP%-%RELEASE%"/>
<label name="org.opensuse.reference" value="registry.opensuse.org/opensuse/bci/bci-micro:%OS_VERSION_ID_SP%.%RELEASE%"/> <label name="org.opensuse.reference" value="registry.opensuse.org/opensuse/bci/bci-micro:%OS_VERSION_ID_SP%-%RELEASE%"/>
<label name="org.openbuildservice.disturl" value="%DISTURL%"/> <label name="org.openbuildservice.disturl" value="%DISTURL%"/>
<label name="org.opensuse.release-stage" value="released"/> <label name="org.opensuse.release-stage" value="released"/>
<label name="org.opensuse.lifecycle-url" value="https://en.opensuse.org/Lifetime#openSUSE_BCI"/> <label name="org.opensuse.lifecycle-url" value="https://en.opensuse.org/Lifetime#openSUSE_BCI"/>
@ -50,7 +49,7 @@ You can contact the BCI team via https://github.com/SUSE/bci/discussions
</labels> </labels>
</containerconfig> </containerconfig>
</type> </type>
<version>2024</version> <version>2025</version>
<packagemanager>zypper</packagemanager> <packagemanager>zypper</packagemanager>
<rpm-check-signatures>false</rpm-check-signatures> <rpm-check-signatures>false</rpm-check-signatures>
<rpm-excludedocs>true</rpm-excludedocs> <rpm-excludedocs>true</rpm-excludedocs>