6 lines
161 B
Docker
6 lines
161 B
Docker
FROM --platform=linux/arm64 debian:unstable
|
|
|
|
RUN apt-get update -y \
|
|
&& apt-get install -y vim gcc g++ make linux-perf stress \
|
|
&& rm -rf /var/lib/apt/lists/*
|