Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update distro ubuntu container 20:04 to 24:04 #421

Open
wants to merge 2 commits 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
25 changes: 21 additions & 4 deletions distros/Ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
FROM ubuntu:20.04
FROM ubuntu:24.04

RUN ln -fs /usr/share/zoneinfo/Europe/Sofia /etc/localtime
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# Install package dependencies
RUN apt update && apt install -y git librsvg2-bin checkinstall nodejs build-essential cmake qt5-default qtdeclarative5-dev qtdeclarative5-dev-tools qtwebengine5-dev qml-module-qtquick-controls qml-module-qtquick-dialogs qml-module-qt-labs-platform qml-module-qtwebchannel qml-module-qtwebengine wget libssl-dev sudo libmpv-dev
RUN apt update && apt install -y git \
librsvg2-bin \
checkinstall \
nodejs \
build-essential \
cmake \
qtbase5-dev \
qt5-qmake \
qtdeclarative5-dev \
qtdeclarative5-dev-tools \
qtwebengine5-dev \
qml-module-qtquick-controls \
qml-module-qtquick-dialogs \
qml-module-qt-labs-platform \
qml-module-qtwebchannel \
qml-module-qtwebengine wget \
libssl-dev \
sudo \
libmpv-dev

# Setting up new user
RUN useradd builduser -m
Expand All @@ -16,4 +34,3 @@ WORKDIR /home/builduser
ADD package.sh .

RUN mkdir -p /usr/share/desktop-directories