6 lines
125 B
Docker
6 lines
125 B
Docker
FROM debian:buster-slim
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y make g++ cmake git \
|
|
&& rm -rf /var/lib/apt/lists/*
|