Skip to content

Commit

Permalink
build: explicitly list configure options for docker builds
Browse files Browse the repository at this point in the history
This should catch Alpine package changes such as the one fixed in
0ba252f.
  • Loading branch information
martanne committed Jan 30, 2020
1 parent 68aba4d commit bd64f58
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ docker: clean
$(DOCKER) exec vis apk update
$(DOCKER) exec vis apk upgrade
$(DOCKER) cp . vis:/build/vis
$(DOCKER) exec vis ./vis/configure CC='cc --static' --enable-acl
$(DOCKER) exec vis ./vis/configure CC='cc --static' \
--enable-acl \
--enable-lua \
--enable-lpeg-static
$(DOCKER) exec vis make -C vis VERSION="$(VERSION)" clean vis-single
$(DOCKER) cp vis:/build/vis/vis-single vis
$(DOCKER) kill vis
Expand Down

0 comments on commit bd64f58

Please sign in to comment.