From 6df6f14188ce3a989deafc32eb118b833b07e0ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Henrique?= Date: Wed, 22 Jan 2025 22:04:00 -0300 Subject: [PATCH] add directory listing for /app in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 36bbec5..b424361 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,10 +9,10 @@ RUN npm install COPY . . RUN npm run build +RUN ls -la /app FROM nginx:alpine -RUN ls -la /app COPY --from=build /app/build /usr/share/nginx/html EXPOSE 80