diff --git a/Containerfile b/Containerfile index 8c0c969..719c5ff 100644 --- a/Containerfile +++ b/Containerfile @@ -10,8 +10,8 @@ ENV nodejs_version $nodejs_version VOLUME /var/lib/containers VOLUME /home/podman/.local/share/containers -RUN microdnf update \ - && microdnf -y install \ +RUN microdnf update --assumeyes \ + && microdnf --assumeyes install \ openssl-devel \ tar \ unzip \ @@ -19,7 +19,7 @@ RUN microdnf update \ && rm -rf /var/cache/yum RUN curl --silent --location https://rpm.nodesource.com/setup_${nodejs_version}.x | bash - \ - && microdnf -y install \ + && microdnf --assumeyes install \ nodejs \ && rm -rf /var/cache/yum