-
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
38b8faf
commit 33f0f98
Showing
1 changed file
with
2 additions
and
6 deletions.
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 |
---|---|---|
@@ -1,15 +1,11 @@ | ||
FROM --platform=$BUILDPLATFORM python:3.11-rc-slim | ||
ARG TARGETPLATFORM | ||
FROM python:3.11-rc-slim | ||
|
||
LABEL description="H & A Security Solutions Elastic ILM" | ||
LABEL maintainer="Justin Henderson [email protected]" | ||
|
||
RUN apt update && \ | ||
apt install wget gpg -y && \ | ||
wget -qO - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \ | ||
echo "deb [arch=$TARGETPLATFORM] 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 install git pipenv build-essential libssl-dev libffi-dev python3-dev chromium -y && \ | ||
apt clean && \ | ||
cd /opt && \ | ||
git clone https://github.com/HASecuritySolutions/elastic-ilm.git && \ | ||
|