From d4d52a2be9be6b6defa72ad2e4cdef73a95bd759 Mon Sep 17 00:00:00 2001 From: Eric Butcher <107886303+Eric-Butcher@users.noreply.github.com> Date: Thu, 30 Apr 2026 00:03:20 -0400 Subject: [PATCH] Fixed small issue with leaving out the current working directory in the build commands. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 27da911..7a65993 100644 --- a/README.md +++ b/README.md @@ -53,17 +53,17 @@ sudo dnf install ./build/out/randomizer-.rpm ## Containers -If you do not wish to install the application directly on your host machine, container files are included which will install the application to be used in the container. One image is Debian based and installs the `.deb` archive and the other is Fedora based and installs the `.rpm` archive. Make sure you go through the steps to build and package the application with CMake before building the container(s). +If you do not wish to install the application directly on your host machine, container files are included which will install the application to be used in the container. One image is Debian based and installs the `.deb` archive and the other is Fedora based and installs the `.rpm` archive. The containers can be created using [Podman](https://podman.io/) or [Docker](https://www.docker.com/). You must have the CLI for either program installed on your computer. The commands should be the same regardless of what container application you choose to use, just use the appropriate command name. The Debian image can be created using the following command from the project's root directory: ```shell -podman build -f containers/Containerfile.debian -t randomizer:debian +podman build -f containers/Containerfile.debian -t randomizer:debian . ``` and the Fedora image can be created using the command: ```shell -podman build -f containers/Containerfile.fedora -t randomizer:fedora +podman build -f containers/Containerfile.fedora -t randomizer:fedora . ``` also from the project's root directory.