-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainerFile
More file actions
20 lines (12 loc) · 742 Bytes
/
ContainerFile
File metadata and controls
20 lines (12 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM registry.access.redhat.com/ubi8
RUN dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -y \
&& dnf update \
&& dnf install -y sudo htop nload vnstat curl wget xz libXi libXxf86vm libXfixes libXrender libGL ncurses unzip screen git podman\
&& dnf clean all \
&& rm -rf /var/cache/yum \
&& cd /tmp && wget -nc https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.93/blender-2.93.1-linux-x64.tar.xz \
&& tar -xvf blender*.xz -C /opt && rm /tmp/blender* && ln -s /opt/blender-2.93.1-linux-x64/blender /usr/bin/blender
# RUN mkdir /opt/blender && tar xvf /tmp blender*.xz -C /opt/blender
ENTRYPOINT ["tail"]
CMD ["-f","/dev/null"]
# RUN sudo echo "root:123" | sudo chpasswd