Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

DEV-784 Check Wiz alerts Add update OS components #16

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
31 changes: 15 additions & 16 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ WORKDIR /usr
RUN apt-get update && apt-get install -y curl && \
curl -sL https://deb.nodesource.com/setup_12.x | bash - && \
apt-get install -y nodejs && \
npm install -g pm2


# 2. Install WebKit dependencies
RUN apt-get install -y libwoff1 \
npm install -g pm2 \
# 2. Install WebKit dependencies \
&& apt-get install -y libwoff1 \
libopus0 \
libwebp6 \
libwebpdemux2 \
Expand All @@ -32,18 +30,19 @@ RUN apt-get install -y libwoff1 \
libgstreamer-plugins-base1.0-0 \
libgstreamer-plugins-bad1.0-0 \
libharfbuzz-icu0 \
libopenjp2-7

# 3. Install Chromium dependencies

RUN apt-get install -y libnss3 \
libopenjp2-7 \
# 3. Install Chromium dependencies \
&& apt-get install -y libnss3 \
libxss1 \
libasound2

# 4. Install Firefox dependencies

RUN apt-get install -y libdbus-glib-1-2 \
libxt6
libasound2 \
# 4. Install Firefox dependencies \
&& apt-get install -y libdbus-glib-1-2 \
libxt6 \
# 4.1 Update OS \
&& apt -y upgrade \
&& apt autoremove \
&& apt clean \
&& rm -rf /var/lib/{apt,dpkg,cache,log}/

# 5. Copying required files

Expand Down