.dockerignore (639B)
1# Docker build spec 2Dockerfile 3 4# Git repository metadata 5.git 6**/.gitignore 7 8# Object code 9**/*.o 10**/*.so 11**/*.lo 12**/*.la 13 14# gcov files 15**/*.gcda 16**/*.gcov 17**/*.gcno 18 19# Backup files 20**/*~ 21 22# Release files 23**/*.tar.gz 24 25# Files currently being edited by vim or vi 26**/*.swp 27 28# automake/autoconf 29**/.deps/ 30**/.dirstamp 31**/.libs/ 32**/Makefile 33**/Makefile.in 34aclocal.m4 35autom4te.cache/ 36m4/* 37**/!README 38compile 39config.guess 40config.h 41config.h.in 42config.log 43config.status 44config.sub 45configure 46depcomp 47install-sh 48libtool 49ltmain.sh 50missing 51stamp-h1 52test-driver 53 54# Test binaries 55tests/test_* 56!tests/test_*.[ch] 57 58# Generated docs 59doc/*/doxygen-output 60