An open API service indexing awesome lists of open source software.

https://github.com/mimani68/docker-c-envirnoment

Dockerfile for clang development envirnoment
https://github.com/mimani68/docker-c-envirnoment

c clang compiler docker dockerfile restfull server

Last synced: about 1 month ago
JSON representation

Dockerfile for clang development envirnoment

Awesome Lists containing this project

README

          

# Clang development envirnoment

## Create image

```bash
docker build -t c-builder:latest .
```

## Usage
```bash
alias cb="docker run --name builder --rm -p 3000:3000 -it -w /app -v ${PWD}:/app c-builder:latest"
```
or
```bash
cb bash
```
or
```bash
cb make
```