/Ubuntu-Clang-Cpp-Dev-Docker

🐳 A Clang C++ development environment based on Ubuntu in Docker, including Git, CMake and GoogleTest.

Primary LanguageDockerfileMIT LicenseMIT

Ubuntu Docker C++ Development Environment

C++ Docker Linux

Introduction

A Clang C++ development environment based on Ubuntu in Docker, also including:

Dockerfile

FROM ubuntu:latest

RUN apt-get update

RUN apt-get install -y vim

RUN apt-get install -y gdb

RUN apt-get install -y git

RUN apt-get install -y clang

RUN apt-get install -y cmake

RUN apt-get install -y libgtest-dev && apt-get install -y libgmock-dev

Starting an Interactive Container

docker container run -it <image> bash

License

Distributed under the MIT License. See LICENSE for more information.