From 135b9c67deed3a0db22e4a3abb42af0901461918 Mon Sep 17 00:00:00 2001 From: debuggerboy Date: Mon, 24 Oct 2022 23:55:31 +0530 Subject: [PATCH] Update Containerfile --- Containerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 35af897..809c931 100644 --- a/Containerfile +++ b/Containerfile @@ -1,3 +1,7 @@ -FROM ubuntu:latest -RUN apt-get update && apt-get install -y firefox +FROM ubuntu:jammy +RUN apt update && apt install -y software-properties-common +RUN add-apt-repository ppa:mozillateam/ppa +COPY files/etc/apt/preferences.d/mozilla-firefox /etc/apt/preferences.d/mozilla-firefox +COPY files/etc/apt/apt.conf.d/51unattended-upgrades-firefox /etc/apt/apt.conf.d/51unattended-upgrades-firefox +RUN apt update && apt install -y firefox CMD ["/usr/bin/firefox"]