Skip to content

Commit

Permalink
Add wget and curl
Browse files Browse the repository at this point in the history
  • Loading branch information
nambrot committed Nov 24, 2023
1 parent 8a25302 commit 2f4da72
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion images/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,15 @@ ENV ImageOS=ubuntu22

RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
sudo \
sudo curl wget \
lsb-release \
&& rm -rf /var/lib/apt/lists/*

RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
apt-get install -y nodejs && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN adduser --disabled-password --gecos "" --uid 1001 runner \
&& groupadd docker --gid 123 \
&& usermod -aG sudo runner \
Expand Down

0 comments on commit 2f4da72

Please sign in to comment.