From bd7d811921a367ae1a8dddd1610441b3bffd4979 Mon Sep 17 00:00:00 2001 From: Alexey Kondratov Date: Sat, 24 Jul 2021 17:32:27 +0300 Subject: [PATCH] Add libseccomp-dev as a dep to Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8855c7b5e8..a2a2fea1a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ # FROM alpine:3.13 as pg-build RUN apk add --update clang llvm compiler-rt compiler-rt-static lld musl-dev binutils \ - make bison flex readline-dev zlib-dev perl linux-headers + make bison flex readline-dev zlib-dev perl linux-headers libseccomp-dev WORKDIR zenith COPY ./vendor/postgres vendor/postgres COPY ./Makefile Makefile @@ -78,7 +78,7 @@ RUN cargo build --release # out how to statically link rocksdb or avoid it at all). # FROM alpine:3.13 -RUN apk add --update openssl build-base +RUN apk add --update openssl build-base libseccomp-dev RUN apk --no-cache --update --repository https://dl-cdn.alpinelinux.org/alpine/edge/testing add rocksdb COPY --from=build /zenith/target/release/pageserver /usr/local/bin COPY --from=build /zenith/target/release/wal_acceptor /usr/local/bin