Skip to content

Commit

Permalink
docker: fix build on Alpine by requiring bsd-compat-headers for sys/q…
Browse files Browse the repository at this point in the history
…ueue.h

As it is self-contained, we could surely just include it.
  • Loading branch information
vincentbernat committed Mar 12, 2022
1 parent 2f2ae98 commit 9aaf1bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM alpine:latest AS build
RUN apk add autoconf automake libtool \
libevent-dev libxml2-dev jansson-dev \
readline-dev libcap-dev alpine-sdk
readline-dev libcap-dev bsd-compat-headers \
alpine-sdk
WORKDIR /build
COPY . .
RUN ./autogen.sh
Expand Down

0 comments on commit 9aaf1bb

Please sign in to comment.