summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Pignolet <matthieu@puffer.fish>2025-10-30 07:13:12 +0100
committerMatthieu Pignolet <matthieu@puffer.fish>2025-10-30 07:13:12 +0100
commitf0a77763e7292aa5ba8e78a5f883c1489055fc73 (patch)
tree17ddf6026c1694d78de0029572d2c51890c6e291
parent5cbb13d6b89705773429e9fa0570e25c9b6a57a4 (diff)
feat: install buildah
-rw-r--r--.forgejo/workflows/demo.yaml5
-rw-r--r--ci/Containerfile4
2 files changed, 3 insertions, 6 deletions
diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml
index 0e6e2d2..d8048b9 100644
--- a/.forgejo/workflows/demo.yaml
+++ b/.forgejo/workflows/demo.yaml
@@ -14,11 +14,12 @@ jobs:
container-build:
name: Build image
runs-on: docker
- container:
- image: 'ci/Containerfile'
steps:
- uses: actions/checkout@v4
+ - run: |
+ apt-get update && \
+ apt-get install -y buildah
- name: Buildah Action
uses: redhat-actions/buildah-build@v2
with:
diff --git a/ci/Containerfile b/ci/Containerfile
deleted file mode 100644
index 5f88108..0000000
--- a/ci/Containerfile
+++ /dev/null
@@ -1,4 +0,0 @@
-FROM data.forgejo.org/oci/node:20-bullseye
-
-RUN apt-get update && \
- apt-get install -y buildah git \ No newline at end of file