All checks were successful
Build the Core image / build (push) Successful in 2m47s
10 lines
463 B
Docker
10 lines
463 B
Docker
FROM quay.io/fedora/fedora-coreos:stable
|
|
|
|
RUN dnf install -y vim htop duf zstd tmux incus rsync fish parted distrobox qemu lxc fastfetch restic tailscale && dnf clean all
|
|
|
|
RUN echo "root:1000000:1000000000" > /etc/subgid && \
|
|
echo "root:1000000:1000000000" > /etc/subuid && \
|
|
echo "kernel.keys.maxkeys = 2590720" > /etc/sysctl.d/99-sysctl.conf && \
|
|
echo "fs.inotify.max_user_instances = 1024" >> /etc/sysctl.d/99-sysctl.conf
|
|
|
|
RUN bootc container lint
|