Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile #292

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ RUN \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
apt-utils \
wget \
unzip
unzip \
ca-certificates \
curl \
gnupg
RUN \
echo "**** download Kibana dashboards ****" && \
wget --no-check-certificate --content-disposition -O /tmp/kibana7-dashboards.tar.gz https://github.com/StamusNetworks/KTS7/tarball/master && \
Expand Down Expand Up @@ -73,7 +76,10 @@ RUN \
libc-dev
RUN \
echo "**** add NodeSource repository ****" && \
wget -O- https://deb.nodesource.com/setup_18.x | bash -
mkdir -p /etc/apt/keyrings && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_18.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list && \
apt update
RUN \
echo "**** install Node.js ****" && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
Expand Down