forked from BearWare/TeamTalk5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile_ubuntu22
35 lines (33 loc) · 1.15 KB
/
Dockerfile_ubuntu22
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM ubuntu:22.04
LABEL Description="TeamTalk for Ubuntu 22.04"
RUN apt update --fix-missing
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata keyboard-configuration
# Duplicate of /TeamTalk5/Build/Makefile:depend-ubuntu22
RUN apt install -y \
autoconf \
cmake \
doxygen \
g++ \
git \
junit4 \
libasound2-dev \
libpcap-dev \
libpulse-dev \
libqt5texttospeech5-dev \
libqt5x11extras5-dev \
libssl-dev \
libtool \
make \
ninja-build \
openjdk-18-jdk \
p7zip-full \
pkg-config \
python2 \
python3-pytest \
qtbase5-dev \
qtmultimedia5-dev \
qttools5-dev \
qttools5-dev-tools \
wget \
yasm
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10