.gitea/workflows/buildah_test.yml gelöscht

This commit is contained in:
2026-06-12 18:11:50 +00:00
parent c164ca4c72
commit ee8a0fd444
-24
View File
@@ -1,24 +0,0 @@
name: Buildah Test
on: [push]
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Buildah Test
run: |
docker run -i --rm \
--cap-add=SYS_ADMIN \
--security-opt seccomp=unconfined \
--security-opt apparmor=unconfined \
--security-opt label=disable \
--tmpfs /var/lib/containers:exec \
--ulimit nofile=1048576:1048576 \
quay.io/buildah/stable:latest \
buildah --storage-driver=vfs --isolation=chroot bud \
-t test-image:latest \
-f - . <<-EOF
FROM alpine:latest
RUN echo 'Success!' > /hello.txt
CMD cat /hello.txt
EOF