fix(build): 🐛 Fix a bug preventing building caused by an old build command being used in Dockerfile

This commit is contained in:
Jesse Wierzbinski 2024-05-07 23:42:38 +00:00
parent 06c30b8af2
commit a621ff7271
No known key found for this signature in database

View file

@ -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