Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
paths-ignore:
- '**.md'
- 'contrib/**'
- 'Dockerfile'
workflow_dispatch:

concurrency:
Expand Down
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ RUN dnf group install -y cloud-server-environment --exclude=plymouth* \
--exclude=dracut* \
--exclude=shim-*

# install packages needed by Lima
RUN dnf install -y \
--setopt=install_weak_deps=False \
qemu-user-static-aarch64 \
qemu-user-static-arm \
qemu-user-static-x86 \
iptables \
fuse-sshfs

RUN systemctl enable cloud-init cloud-init-local cloud-config cloud-final

# enable systemd
Expand Down