mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
10 lines
194 B
Plaintext
10 lines
194 B
Plaintext
|
FROM gitpod/workspace-full
|
||
|
|
||
|
RUN sudo apt-get update \
|
||
|
&& sudo apt-get install -y \
|
||
|
doxygen \
|
||
|
graphviz \
|
||
|
ninja-build \
|
||
|
&& pip install cpplint \
|
||
|
&& sudo rm -rf /var/lib/apt/lists/*
|