Loading Dockerfile +4 −7 Original line number Diff line number Diff line FROM ubuntu:20.04 FROM ubuntu:22.04 ENV CHROMIUM_DIR "/srv/chromium" ENV CHROMIUM_VER "138.0.7204.50" ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install -y software-properties-common && \ add-apt-repository ppa:deadsnakes/ppa && \ add-apt-repository ppa:git-core/ppa apt-get install -y software-properties-common RUN dpkg --add-architecture i386 RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get -f -y install sudo lsb-release cl-base64 bash wget apt-utils ccache jq python3.10 \ apt-get -f -y install sudo lsb-release cl-base64 bash wget apt-utils ccache jq file \ python-is-python3 sed tzdata build-essential lib32gcc-9-dev g++-multilib dos2unix wiggle git curl RUN mkdir ${CHROMIUM_DIR} Loading Loading
Dockerfile +4 −7 Original line number Diff line number Diff line FROM ubuntu:20.04 FROM ubuntu:22.04 ENV CHROMIUM_DIR "/srv/chromium" ENV CHROMIUM_VER "138.0.7204.50" ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install -y software-properties-common && \ add-apt-repository ppa:deadsnakes/ppa && \ add-apt-repository ppa:git-core/ppa apt-get install -y software-properties-common RUN dpkg --add-architecture i386 RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get -f -y install sudo lsb-release cl-base64 bash wget apt-utils ccache jq python3.10 \ apt-get -f -y install sudo lsb-release cl-base64 bash wget apt-utils ccache jq file \ python-is-python3 sed tzdata build-essential lib32gcc-9-dev g++-multilib dos2unix wiggle git curl RUN mkdir ${CHROMIUM_DIR} Loading