eXist-db / docker-existdb

Docker image builder for eXist-db
GNU Affero General Public License v3.0
11 stars 6 forks source link

[housekeeping] remove build.sh #38

Closed duncdrum closed 5 years ago

duncdrum commented 5 years ago

we're 99% there but building will fail when calls to build.sh are removed from the dockerfile.

grantmacken commented 5 years ago

l will fail when calls to build.sh are removed from the dockerfile.

So it should, because

&& git clone --progress https://github.com/exist-db/exist.git \
&& cd $EXIST_MAX \
 ...
&& ./build.sh 

The called 'build.sh' is the build.sh in the exist repo, not the 'build.sh' that remains in this repo. As an aside the now redundant build.sh in this repo also called other 'build.sh' .

duncdrum commented 5 years ago

that was my thinking as well, but when i removed that call the build fails because of a later call to rm -r EXIST_MAX … some more fiddling is required

Oh my bad, i misunderstood.