From 4b8ec2cc7c0f2b1764541b00329eabe4a8f992fd Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sun, 5 Feb 2023 10:20:17 +0100 Subject: [PATCH] fix: replace curl with pre-installed curl-minimal, add bash-completion --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8faa30a..9534ff1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM docker.io/library/rockylinux:9.1 ARG MKISOFS_VERSION RUN yum update --assumeyes && \ - yum install --assumeyes bash curl + yum install --assumeyes bash bash-completion RUN if [ -z ${MKISOFS_VERSION+x} ]; then \ yum install --assumeyes xorriso; \