From b257aab2b46c0084c63eb14a11ba799554ba189f Mon Sep 17 00:00:00 2001 From: Nemuel Wainaina Date: Tue, 12 Nov 2024 05:58:36 +0300 Subject: [PATCH] Add commands to check whether the build is successful --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3d36ee0..bf45725 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,3 +24,7 @@ RUN poetry install --no-root # build the application with Pyinstaller RUN poetry run pyinstaller app.spec + +# confirm that the app is indeed built +RUN ls -l /app/dist +RUN ls -l /app/dist/app