-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cab58d
commit 38c5d91
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,11 @@ LABEL description="H & A Security Solutions Elastic ILM" | |
LABEL maintainer="Justin Henderson [email protected]" | ||
|
||
RUN apt update && \ | ||
apt install git pipenv build-essential libssl-dev libffi-dev python3-dev -y && \ | ||
apt install wget gpg -y && \ | ||
wget -qO - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \ | ||
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/chrome.list && \ | ||
apt update && \ | ||
apt install git pipenv build-essential libssl-dev libffi-dev python3-dev google-chrome-stable -y && \ | ||
apt clean && \ | ||
cd /opt && \ | ||
git clone https://github.com/HASecuritySolutions/elastic-ilm.git && \ | ||
|