Skip to content

Commit

Permalink
build dockerd with libseccomp 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisewang committed Jan 26, 2021
1 parent a464a87 commit 8bc7c76
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion components/engine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,14 @@ RUN /download-frozen-image-v2.sh /build \
FROM base AS runtime-dev
RUN apt-get update && apt-get install -y \
libapparmor-dev \
libseccomp-dev
wget \
gperf

# install libseccomp 2.5.1
RUN wget https://github.com/seccomp/libseccomp/releases/download/v2.5.1/libseccomp-2.5.1.tar.gz \
&& tar zxf libseccomp-2.5.1.tar.gz

RUN cd libseccomp-2.5.1 && ./configure && make V=0 && make install

FROM base AS tomlv
ENV INSTALL_BINARY_NAME=tomlv
Expand Down

0 comments on commit 8bc7c76

Please sign in to comment.