aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2020-01-16 17:37:48 +0100
committerChristian Hesse <mail@eworm.de>2020-01-16 17:45:56 +0100
commit0ba252f08e9ef7b62c442eb91b36822d654f5b04 (patch)
treea17c4b8737b29e0bb82eb274e08a6c56c264af25 /Dockerfile
parentfb7b16538e21ebd0a3de4e831dd21dd644f13c4a (diff)
downloadvis-0ba252f08e9ef7b62c442eb91b36822d654f5b04.tar.gz
vis-0ba252f08e9ef7b62c442eb91b36822d654f5b04.tar.xz
build: install static libacl for docker builds
Commit 50b0a580105ac976a1c95df9441d898d7a652bfb updated Alpine docker image, however this broke building with acl support. The static libacl moved to its own package, so just install that.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 35cbd77..fe246bb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,7 +11,7 @@ ENV DIR /tmp/vis
WORKDIR $DIR
RUN apk update && apk add musl-dev fortify-headers gcc make libtermkey-dev \
ncurses-dev ncurses-static lua5.3-dev lua5.3-lpeg lua-lpeg-dev \
- acl-dev xz-dev tar xz wget ca-certificates
+ acl-static acl-dev xz-dev tar xz wget ca-certificates
RUN sed -i 's/Libs: /Libs: -L${INSTALL_CMOD} /' /usr/lib/pkgconfig/lua5.3.pc
RUN mv /usr/lib/lua/5.3/lpeg.a /usr/lib/lua/5.3/liblpeg.a
RUN sed -i 's/-ltermkey/-ltermkey -lunibilium/' /usr/lib/pkgconfig/termkey.pc