From fc2ee1f49ae498bdb58fe83548d19982deab65b7 Mon Sep 17 00:00:00 2001 From: aleks Date: Fri, 21 Jun 2024 22:14:31 +0500 Subject: [PATCH] fix: final after build --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 3116d59..0e9ea30 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -39,7 +39,7 @@ RUN pnpm run build ################################################################################ # Create a new stage to run the application with minimal runtime dependencies # where the necessary files are copied from the build stage. -FROM base as final +FROM build as final # Use production node environment by default. ENV NODE_ENV production