From a621ff7271aa31fd3fe02d25824d5ed74143e10e Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Tue, 7 May 2024 23:42:38 +0000 Subject: [PATCH] fix(build): :bug: Fix a bug preventing building caused by an old build command being used in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ed42fb6c..117a0322 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ COPY . /temp COPY --from=install /temp/node_modules /temp/node_modules # Build the project WORKDIR /temp -RUN bun run prod-build +RUN bun run build WORKDIR /temp/dist # Copy production dependencies and source code into final image