This is an automated email from the ASF dual-hosted git repository. ivila pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/teaclave-website.git
commit 2fb6fd02e1acfd973e78bc88801c67be7ab50235 Author: Zehui Chen <[email protected]> AuthorDate: Fri May 22 17:57:59 2026 +0800 Dockerfile: update trustzone image --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index b4196658b..47e7c5b78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,18 @@ # SGX Docs stage -FROM teaclave/teaclave-build-ubuntu-1804-sgx-2.14:latest AS sgx-docs +FROM teaclave/teaclave-build-ubuntu-2004-sgx-2.17.1:0.2.0 AS sgx-docs WORKDIR /app +RUN (apt update || true) && apt install -y ca-certificates && update-ca-certificates COPY sgx-sdk-api-docs /app/sgx-sdk-api-docs RUN . "$HOME/.cargo/env" && cd sgx-sdk-api-docs && cargo doc RUN mkdir -p /prebuilt_docs && \ cp -r sgx-sdk-api-docs/target/doc /prebuilt_docs/sgx-sdk-docs # Trustzone Docs stage -FROM teaclave/teaclave-trustzone-emulator-std-optee-4.5.0-expand-memory:latest AS tz-docs +FROM teaclave/teaclave-trustzone-emulator-std-expand-memory:latest AS tz-docs WORKDIR /app COPY tz-sdk-api-docs /app/tz-sdk-api-docs RUN . /opt/teaclave/setup/bootstrap_env && \ . /opt/teaclave/environment && \ - . $HOME/.cargo/env && \ cd tz-sdk-api-docs && cargo doc RUN mkdir -p /prebuilt_docs && \ cp -r tz-sdk-api-docs/target/doc /prebuilt_docs/tz-sdk-docs @@ -45,4 +45,4 @@ RUN apt-get update && apt-get install -y \ python3-pip \ git \ curl -RUN pip3 install --break-system-packages ghp-import \ No newline at end of file +RUN pip3 install --break-system-packages ghp-import --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
