Skip to content

Commit

Permalink
fix(devcontainer): add -y
Browse files Browse the repository at this point in the history
  • Loading branch information
xynydev committed Mar 27, 2024
1 parent e60e34c commit 2bb0b01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workshop-dev.Containerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM registry.fedoraproject.org/fedora-toolbox:latest

RUN sudo dnf check-update && \
sudo dnf install \
RUN sudo dnf check-update -y && \
sudo dnf install -y \
webkit2gtk4.0-devel \
openssl-devel \
curl \
wget \
file \
libappindicator-gtk3-devel \
librsvg2-devel && \
sudo dnf group install "C Development Tools and Libraries"
sudo dnf group install -y "C Development Tools and Libraries"

0 comments on commit 2bb0b01

Please sign in to comment.