From d558f1cca9c0748a5c255d02d1d8caeb02a9ed39 Mon Sep 17 00:00:00 2001 From: Joshua Lai Date: Mon, 15 Jul 2024 15:40:34 +0800 Subject: [PATCH] improv: Print out the contents of the current directory in dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e4148e72..51da007f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,6 +40,9 @@ ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD="true" ENV PLAYWRIGHT_BROWSERS_PATH="/opt/ms-playwright" ENV PATH="/opt/verapdf:${PATH}" +# Print out the contents of the current directory to verify package.json files are copied +RUN ls -la + # Install dependencies and compile TypeScript RUN npm ci --omit=dev || true # true exits with code 0 - temp workaround until errors are resolved as npm run build is run as part of postinstall