Add debian docker file for development

This commit is contained in:
Milo Yip 2016-03-02 01:45:05 +08:00
parent 364545fe57
commit 680c111278
1 changed files with 8 additions and 0 deletions

8
docker/debian/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
# BUILD: docker build -t rapidjson-debian .
# RUN: docker run -it -v "$PWD"/../..:/rapidjson rapidjson-debian
FROM debian:jessie
RUN apt-get update && apt-get install -y g++ cmake doxygen valgrind
ENTRYPOINT ["/bin/bash"]