mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 11:12:48 +00:00
Update Dockerfile to use the latest Bun image for production builds
- Changed the base image for the production stage to `oven/bun:latest` to ensure compatibility and access to the latest features. - Maintained the existing multi-stage build structure for optimized application deployment.
This commit is contained in:
parent
ddbd73fd3e
commit
064b37b822
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ ENV BETTER_AUTH_TELEMETRY=0
|
|||
RUN bun run build
|
||||
|
||||
# Production image
|
||||
FROM base AS runner
|
||||
FROM oven/bun:latest AS runner
|
||||
WORKDIR /app
|
||||
|
||||
ENV NODE_ENV=production
|
||||
|
|
|
|||
Loading…
Reference in a new issue