From f7b30cb4954042c0f0e74112ef3627764145bcf4 Mon Sep 17 00:00:00 2001 From: 4NK CI Bot Date: Sun, 21 Sep 2025 17:04:10 +0000 Subject: [PATCH] ci: docker_tag=ext - Fix Dockerfile to verify pkg files during build --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1ac551c..8d885b2 100755 --- a/Dockerfile +++ b/Dockerfile @@ -49,6 +49,9 @@ COPY . . # Ensure pkg directory exists and has correct permissions RUN mkdir -p pkg && chmod -R 755 pkg +# Verify pkg files are present +RUN ls -la pkg/ && file pkg/sdk_client_bg.wasm + # Copy the provided prebuilt WASM package (ESM) # The directory pkg is provided in the build context # and already contains sdk_client.js (ES module) and wasm