File tree 1 file changed +20
-1
lines changed
1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM quay.io/toolbx-images/alpine-toolbox:edge AS alpine-boxkit-base
3
3
LABEL com.github.containers.toolbox="true" \
4
4
usage="This image is meant to be used with the toolbox or distrobox command" \
5
5
summary="A cloud-native terminal experience" \
6
- maintainer="jorge.castro@gmail.com "
6
+ maintainer="johnr14 "
7
7
8
8
COPY extra-packages.alpine /
9
9
RUN apk update && \
@@ -19,4 +19,23 @@ RUN ln -fs /bin/sh /usr/bin/sh && \
19
19
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/transactional-update
20
20
21
21
22
+ FROM quay.io/fedora/fedora-toolbox:40 AS fedora-boxkit-base
23
+ # Support Nvidia Container Runtime (https://developer.nvidia.com/nvidia-container-runtime)
24
+ # ENV NVIDIA_VISIBLE_DEVICES all
25
+ # ENV NVIDIA_DRIVER_CAPABILITIES all
22
26
27
+ LABEL com.github.containers.toolbox="true" \
28
+ usage="This image is meant to be used with the toolbox or distrobox commands" \
29
+ summary="Dependencies for running DaVinci Resolve on image-based Linux operating systems" \
30
+ maintainer="johnr14"
31
+
32
+ # COPY system_files /
33
+
34
+ # Bundle everything in one command will it reduce the number of layers ?
35
+ COPY extra-packages.fedora /
36
+ RUN dnf -y update && \
37
+ dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm && \
38
+ dnf -y install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm && \
39
+ grep -v '^#' /extra-packages.fedora | xargs dnf -y install && \
40
+ rm /extra-packages.fedora && \
41
+ dnf clean all
You can’t perform that action at this time.
0 commit comments