mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
3f31d518ec
Working vscode modules on Gitpod: * cmake configure, compile and provide intellisense * Microsoft C/C++ tools for intellisense, autocomplete, etc * use docker image for Gitpod for more control on packages * enable badges and other convenience tools using Gitpod
10 lines
194 B
Docker
10 lines
194 B
Docker
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/*
|