From 861efca90adada27c1f468ccab6f4676a11f127b Mon Sep 17 00:00:00 2001 From: guochao Date: Tue, 21 Nov 2023 10:38:28 +0800 Subject: [PATCH] fix example runtime dep in build/Dockerfile.ubuntu --- build/Dockerfile.ubuntu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile.ubuntu b/build/Dockerfile.ubuntu index 14d3df9..30160d1 100644 --- a/build/Dockerfile.ubuntu +++ b/build/Dockerfile.ubuntu @@ -11,7 +11,7 @@ WORKDIR /src RUN /root/.cargo/bin/cargo build --release FROM base as runtime -RUN apt update && apt install libseccomp -y && rm -rf /var/apt +RUN apt update && apt install libseccomp2 -y && rm -rf /var/apt COPY --from=builder /src/target/release/x2t-sandbox /usr/local/bin/x2t-sandbox FROM base as copy-to-data