From 268876d0c435acb11fb7db8b3a6e8a61888ee6f4 Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sat, 18 Nov 2023 15:55:24 +0000 Subject: [PATCH] Add jq, buildah and podman --- .gitea/workflows/build.yaml | 2 +- ubuntu.Containerfile | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 8d06da8..9a02099 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -7,7 +7,7 @@ on: jobs: build: name: Build and push images - runs-on: ubuntu-22.04 + runs-on: debian-node-bullseye steps: - uses: actions/checkout@v4 - name: Install buildah diff --git a/ubuntu.Containerfile b/ubuntu.Containerfile index 7875027..c0644a4 100644 --- a/ubuntu.Containerfile +++ b/ubuntu.Containerfile @@ -1,3 +1,4 @@ FROM docker.io/node:18-bullseye RUN apt-get -y update && \ - apt-get -y install sudo + apt-get -y install sudo jq buildah podman && \ + (echo '[storage]';echo 'driver = "vfs"') > /etc//containers/storage.conf