tw4dl_docker-gcc-valgrind/Dockerfile

11 lines
320 B
Docker
Raw Normal View History

2017-02-02 08:03:12 +00:00
from ubuntu:16.04
2015-05-04 03:14:57 +00:00
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