You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM ubuntu:24.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# --- Install packages ---
|
|
RUN apt-get update
|
|
RUN apt-get install -y build-essential
|
|
RUN apt-get install -y vim git cmake \
|
|
wget unzip \
|
|
libusb-1.0-0-dev \
|
|
libgl1
|
|
|
|
WORKDIR /opt
|