Compare commits
2 commits
d66609a954
...
87ee8b7eba
Author | SHA1 | Date | |
---|---|---|---|
87ee8b7eba | |||
06886b4301 |
1 changed files with 10 additions and 3 deletions
|
@ -4,12 +4,19 @@ jobs:
|
||||||
build-image:
|
build-image:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: quay.io/podman/stable
|
image: debian:trixie
|
||||||
|
volumes:
|
||||||
|
- /var/lib/containers
|
||||||
steps:
|
steps:
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: |
|
run: |
|
||||||
dnf -y module install nodejs:18/common
|
apt-get -y update
|
||||||
dnf -y install git
|
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
|
- name: Setup podman
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Reference in a new issue