StackStorm / st2packaging-dockerfiles

Dockerfiles used to build and test StackStorm deb/rpm packages
https://github.com/StackStorm/st2-packages
32 stars 33 forks source link

Fixed Ubuntu 18 (bionic) container from excluding documentation files. #81

Closed nmaludy closed 4 years ago

nmaludy commented 4 years ago

Recently, when testing puppet-st2 for Ubuntu 18 (bionic) the tests were failing because /usr/share/doc/st2/conf/nginx/st2.conf wasn't present after installing the st2 package.

Turns out, it's because the base Ubuntu container creates a file to exclude documentation (/etc/dpkg/dpkg.conf.d/excludes). This PR removes that file so that documentation, including our nginx config, will be installed.

Also added a note in the README about how to build the containers locally (because i got thrown for a loop).