Skip to content

Commit

Permalink
fix: Assume yes for dnf commands
Browse files Browse the repository at this point in the history
  • Loading branch information
zelikos committed Sep 5, 2023
1 parent 46fa049 commit 4fdfb56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ LABEL com.github.containers.toolbox="true" \
maintainer="[email protected]"

COPY extra-packages /
RUN dnf update && \
grep -v '^#' /extra-packages | xargs dnf install
RUN dnf -y update && \
grep -v '^#' /extra-packages | xargs dnf -y install
RUN rm /extra-packages

0 comments on commit 4fdfb56

Please sign in to comment.