From 52bb9b04f129e1b5b425097c20369247c65f2a75 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 22 Jan 2025 15:56:21 -0600 Subject: [PATCH] Retain context in command --- Dockerfile.small | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Dockerfile.small b/Dockerfile.small index 7e0689fa3b..6e8d3b6a5c 100644 --- a/Dockerfile.small +++ b/Dockerfile.small @@ -33,15 +33,9 @@ RUN \. "$NVM_DIR/nvm.sh" && \ nvm install $NODE_VERSION && \ nvm use $NODE_VERSION && \ npm install --global yarn && \ - yarn - -# Debug -RUN \ + yarn && \ echo "Using bundle identifier: $EXPO_PUBLIC_BUNDLE_IDENTIFIER" && \ - echo "Using appview did: $EXPO_PUBLIC_APPVIEW_DID" - -# Build the app -RUN \ + echo "Using appview did: $EXPO_PUBLIC_APPVIEW_DID" && \ yarn intl:build && \ EXPO_PUBLIC_ENV=production \ EXPO_PUBLIC_APPVIEW_DID=$EXPO_PUBLIC_APPVIEW_DID \