fix: dont invoke apt-get with sudo in dockerfile

This commit is contained in:
Tropical 2026-03-10 18:10:45 -05:00
parent c606302808
commit 6c67565a0b

View file

@ -7,7 +7,7 @@ RUN apt-get update \
&& apt-get install -y software-properties-common \
&& add-apt-repository -y ppa:ubuntu-toolchain-r/test \
&& apt-get update \
&& sudo apt-get install -y \
&& apt-get install -y \
build-essential \
python3 \
ninja-build \