blob: 2d9e3bbc8b48e5f9b639f981e3469749268f0ae2 (
plain)
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
|
FROM ubuntu:latest
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y gpg wget software-properties-common
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null \
| gpg --dearmor - \
| tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null
RUN apt-add-repository -y 'deb https://apt.kitware.com/ubuntu/ focal main'
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
git \
openssh-client \
sudo \
vim \
linux-tools-common \
valgrind \
x11-apps \
python3 \
python3-pip \
&& apt-get clean
RUN pip install PySide6
# && rm -rf /var/lib/apt/lists/*
|