build(Dockerfile): update build command for production

This commit is contained in:
2025-03-09 13:44:13 +01:00
parent 4192c882d0
commit 89117b092b

View File

@ -25,7 +25,7 @@ COPY --from=build /app /app
# Install only production dependencies
RUN bun install --prod
RUN bun next build
RUN bun astro build
# Expose the application port
EXPOSE 3001