1
0

forgot assumeyes on update

This commit is contained in:
tbelway 2025-10-28 11:02:40 -04:00
parent 8115bbac17
commit 58cbc94a51

View File

@ -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