What`s the VARNISHSRC path for Varnish installations on ubuntu via apt-get? -
i'm building docker container varnish 3.0 , need compile libvmod-cookie. docker container uses ubuntu:14.04.2
image.
from ubuntu:14.04.2 run apt-get update -qq && \ apt-get upgrade -yqq && \ apt-get -yqq install make curl build-essential git automake \ pkg-config libmhash-dev python-docutils sed libtool libpcre3 libpcre3-dev \ libreadline6-dev libeditline0 libeditline-dev psmisc net-tools \ libvarnishapi-dev automake autotools-dev libedit-dev libjemalloc-dev \ libncurses-dev libpcre3-dev libtool pkg-config python-docutils python-sphinx \ graphviz varnish && \ apt-get -yqq clean run git clone https://github.com/varnish/libvmod-cookie.git && cd libvmod-cookie \ && git checkout libvmod-cookie-1.01 && ./autogen.sh && \ ./configure && make && make install expose 80 cmd ["/var/www/yazawa/install.sh"]
as can see in dockerfile i'm doing following steps build libvmod-cookie:
sudo apt-get install varnish ./autogen.sh ./configure make make install
but got error message:
... configure: error: no varnish source tree specified
i think have set varnishsrc path ./configure
...
./configure varnishrc=/path/to/varnish
but don't know path of varnish source tree when installed via apt-get. right way? or completelly lost?
Comments
Post a Comment