From 9213be20f1c42f597ed3dadda51b2636a038b514 Mon Sep 17 00:00:00 2001 From: Ismo Puustinen Date: Wed, 8 Mar 2023 13:26:08 +0200 Subject: [PATCH] Dockerfile changes for adding libseccomp. Signed-off-by: Ismo Puustinen --- test/k8s/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/k8s/Dockerfile b/test/k8s/Dockerfile index c21dfcd5a..60e6eb235 100644 --- a/test/k8s/Dockerfile +++ b/test/k8s/Dockerfile @@ -12,7 +12,7 @@ ENV PATH="/root/.cargo/bin:${PATH}" RUN rustup install stable WORKDIR /shim COPY . . -RUN apt-get update && apt-get install --no-install-recommends -y build-essential git clang +RUN apt-get update && apt-get install -y build-essential git clang libseccomp-dev libclang-dev libelf-dev pkg-config RUN curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- --version=0.11.2 RUN \ --mount=type=cache,target=/usr/local/cargo/registry \