From 33f0f98da1ea11b0379c19b7a3dc2e614cea4f40 Mon Sep 17 00:00:00 2001 From: JustinHendersonSMAPPER <108941117+JustinHendersonSMAPPER@users.noreply.github.com> Date: Thu, 23 Feb 2023 10:52:17 -0600 Subject: [PATCH] Update Dockerfile --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0353c6f..28df4f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 -justin@hasecuritysolutions.com" 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 && \