Skip to content

Commit 167e23c

Browse files
committed
feat(fedora): build with extra-packages.fedora
1 parent 77802dc commit 167e23c

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

Containerfile

+20-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM quay.io/toolbx-images/alpine-toolbox:edge AS alpine-boxkit-base
33
LABEL com.github.containers.toolbox="true" \
44
usage="This image is meant to be used with the toolbox or distrobox command" \
55
summary="A cloud-native terminal experience" \
6-
maintainer="jorge.castro@gmail.com"
6+
maintainer="johnr14"
77

88
COPY extra-packages.alpine /
99
RUN apk update && \
@@ -19,4 +19,23 @@ RUN ln -fs /bin/sh /usr/bin/sh && \
1919
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/transactional-update
2020

2121

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
2226

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

0 commit comments

Comments
 (0)