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

https://github.com/telkomdev/dcmake

Ubuntu Docker base image with preinstall cmake, clang, conan and poco
https://github.com/telkomdev/dcmake

cmake cpp docker poco

Last synced: 4 months ago
JSON representation

Ubuntu Docker base image with preinstall cmake, clang, conan and poco

Awesome Lists containing this project

README

        

# dcmake

Ubuntu base image with preinstall `cmake`, `clang`, `conan` and `poco`. Suitable for your `C++` project that uses Poco .

## Build
```shell
$ make build
```

## Create Dockerfile
```
FROM wuriyanto/dcmake

WORKDIR /app/cpoco/

ADD . /app/cpoco

RUN mkdir build \
&& cd build \
&& cmake .. \
&& make

EXPOSE 8000

ENTRYPOINT [ "./build/cpoco" ]
```