Skip to content

Commit

Permalink
Add rpmfusion and bun
Browse files Browse the repository at this point in the history
  • Loading branch information
trevnels committed Jan 17, 2024
1 parent d79d054 commit 6dafdc8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ LABEL com.github.containers.toolbox="true" \
usage="This image is meant to be used with the toolbox or distrobox command" \
summary="My personal distrobox development environment"

RUN dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
RUN dnf -y install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm

COPY extra-packages /
RUN dnf -y update && \
grep -v '^#' /extra-packages | xargs dnf -y install
Expand All @@ -15,4 +18,9 @@ RUN ln -fs /bin/sh /usr/bin/sh && \
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/rpm-ostree && \
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/transactional-update


# install Bun (npm should be present as part of extra-packages above)
RUN npm install -g bun

# install VSCode

# install Typst

0 comments on commit 6dafdc8

Please sign in to comment.