From 401cf88e87f6d4eb466f450020cddff9191c8387 Mon Sep 17 00:00:00 2001 From: xynydev Date: Sat, 27 Jan 2024 18:50:30 +0200 Subject: [PATCH] fix: copy empty directory to be missing folders (instead of trying to run mkdir without a shell) --- Containerfile | 3 ++- empty/.gitkeep | 0 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 empty/.gitkeep diff --git a/Containerfile b/Containerfile index c3f29c1..e319241 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,5 @@ FROM scratch -RUN mkdir /rpms /files +COPY empty /rpms +COPY empty /files COPY modules /modules \ No newline at end of file diff --git a/empty/.gitkeep b/empty/.gitkeep new file mode 100644 index 0000000..e69de29