Compare commits

...

2 commits

Author SHA1 Message Date
Peter Cai 87ee8b7eba Switch to Debian Trixie
Some checks failed
/ build-image (push) Failing after 39s
2024-02-15 14:57:13 -05:00
Peter Cai 06886b4301 Revert "Use official podman images"
This reverts commit d66609a954.
2024-02-15 14:56:31 -05:00

View file

@ -4,12 +4,19 @@ jobs:
build-image:
runs-on: docker
container:
image: quay.io/podman/stable
image: debian:trixie
volumes:
- /var/lib/containers
steps:
- name: Install packages
run: |
dnf -y module install nodejs:18/common
dnf -y install git
apt-get -y update
apt-get -y install git nodejs podman
- name: Fixup subuid/subgid
run: |
echo 'root:1:999' > /etc/subuid
echo 'root:1:999' > /etc/subgid
- name: Setup podman
run: |