You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
380 B
Django/Jinja
16 lines
380 B
Django/Jinja
FROM {{ base_image_name }}:{{ version }}
|
|
|
|
# TODO REM add comment.
|
|
RUN \
|
|
dnf install -y nfs-utils && \
|
|
mkdir -p /var/cache/dnf && \
|
|
mount \
|
|
-t nfs \
|
|
-o nolock \
|
|
192.168.1.204:/pool1/package-caches/dnf \
|
|
/var/cache/dnf && \
|
|
echo "keepcache=1" >> /etc/dnf/dnf.conf && \
|
|
dnf install -y ansible && \
|
|
echo yay
|
|
# dnf clean all
|