initial Dockerfile commit

This commit is contained in:
David Liu
2015-05-03 20:14:57 -07:00
parent ce883fcf97
commit f01f68abfa
4 changed files with 25 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
#use 32-bit ubuntu 12.04 required by valgrind. 64-bit has some known issues
from shawn/ubuntu-precise-i386
MAINTAINER David Liu <email4dliu@gmail.com>
LABEL Description="Do your C/C++ development in Docker container. Based on Ubuntu, and added build-essential and valgrind so you can use g++/gcc/gdb/valgrind."
#adds gcc valgrind
run apt-get install -y build-essential valgrind
WORKDIR /app
CMD /bin/bash