From e5b8123a704fcbf03bb8e31a9b4f115ab71bbc08 Mon Sep 17 00:00:00 2001 From: Odilon Sousa Date: Sat, 23 Nov 2024 12:04:05 -0300 Subject: [PATCH] Add new package and file --- Containerfile | 6 ++++-- files/hello-world.txt | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 files/hello-world.txt diff --git a/Containerfile b/Containerfile index d9bcd19..c89b204 100644 --- a/Containerfile +++ b/Containerfile @@ -2,6 +2,8 @@ FROM quay.io/fedora/fedora-bootc:41 LABEL org.opencontainers.image.source="https://github.com/Odilhao/bootc-server" -RUN dnf install install cloud-init vim -y && \ +RUN dnf install install cloud-init vim nc -y && \ ln -s ../cloud-init.target /usr/lib/systemd/system/default.target.wants && \ - rm -rf /var/{cache,log} \ No newline at end of file + rm -rf /var/{cache,log} + +COPY files/hello-world.txt /etc/ \ No newline at end of file diff --git a/files/hello-world.txt b/files/hello-world.txt new file mode 100644 index 0000000..72efa14 --- /dev/null +++ b/files/hello-world.txt @@ -0,0 +1 @@ +Ola DOD BSB \ No newline at end of file