feat: remove sudo from installed packages

This commit is contained in:
Ana Custura 2024-12-04 13:02:18 +00:00 committed by irl
parent 4dd0c4ed22
commit 3922082a56

View file

@ -35,7 +35,7 @@ RUN curl -fsSL https://get.opentofu.org/opentofu.gpg -o opentofu.gpg && \
rm -rf opentofu.tar.gz opentofu.tar.gz.gpgsig opentofu.gpg /tmp/* /var/tmp/*
RUN apt-get update && \
apt-get install --no-install-recommends -y curl sudo make && \
apt-get install --no-install-recommends -y curl make && \
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*