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
- Host: GitHub
- URL: https://github.com/telkomdev/dcmake
- Owner: telkomdev
- Created: 2019-11-09T19:19:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-09T19:19:55.000Z (over 5 years ago)
- Last Synced: 2025-01-16T20:19:09.062Z (5 months ago)
- Topics: cmake, cpp, docker, poco
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/dcmakeWORKDIR /app/cpoco/
ADD . /app/cpoco
RUN mkdir build \
&& cd build \
&& cmake .. \
&& makeEXPOSE 8000
ENTRYPOINT [ "./build/cpoco" ]
```