8 lines
269 B
Docker
8 lines
269 B
Docker
FROM docker.io/ubuntu:22.04
|
|
|
|
# Install dependencies
|
|
RUN apt-get update -y && apt-get install -yq build-essential cmake \
|
|
openssh-server git-all sudo ssh sshpass pciutils python3 python3-dev \
|
|
python3-pip curl ca-certificates \
|
|
&& rm -rf /var/lib/apt/list/*
|