From 9f1b65b7812490191738cc4c4ed4410492dd8949 Mon Sep 17 00:00:00 2001 From: Job79 Date: Mon, 10 Nov 2025 17:57:39 +0100 Subject: [PATCH] refactor: add spacing to dockerfiles --- containers/go/Containerfile | 2 ++ containers/infra/Containerfile | 2 ++ containers/vms/Containerfile | 2 ++ 3 files changed, 6 insertions(+) diff --git a/containers/go/Containerfile b/containers/go/Containerfile index cc4ada4..d83c067 100644 --- a/containers/go/Containerfile +++ b/containers/go/Containerfile @@ -1,5 +1,7 @@ ARG TAG FROM git.plabble.org/job79/fedora:${TAG} USER root + RUN dnf -y install go + USER user diff --git a/containers/infra/Containerfile b/containers/infra/Containerfile index 70f1418..c98257b 100644 --- a/containers/infra/Containerfile +++ b/containers/infra/Containerfile @@ -1,6 +1,8 @@ ARG TAG FROM git.plabble.org/job79/fedora:${TAG} USER root + RUN dnf -y install kubectl openssl RUN curl -sL https://talos.dev/install | sh + USER user diff --git a/containers/vms/Containerfile b/containers/vms/Containerfile index dca0f40..d0199e9 100644 --- a/containers/vms/Containerfile +++ b/containers/vms/Containerfile @@ -1,5 +1,7 @@ ARG TAG FROM git.plabble.org/job79/fedora:${TAG} USER root + RUN dnf -y install qemu-system-x86 + USER user