1 FROM docker.io/library/ubuntu:20.04
65 libspice-protocol-dev \
70 libtest-harness-perl \
76 libvirglrenderer-dev \
98 python3-sphinx-rtd-theme \
112 RUN apt-get update && \
113 DEBIAN_FRONTEND=noninteractive apt-get -y install $PACKAGES
114 RUN dpkg -l $PACKAGES | sort > /packages.txt
116 # Apply patch https://reviews.llvm.org/D75820
117 # This is required for TSan in clang-10 to compile with QEMU.
118 RUN sed -i 's/^const/static const/g' /usr/lib/llvm-10/lib/clang/10.0.0/include/sanitizer/tsan_interface.h