fix example runtime dep in build/Dockerfile.ubuntu

This commit is contained in:
guochao 2023-11-21 10:38:28 +08:00
parent 533d69453e
commit 861efca90a

View File

@ -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