dist
This commit is contained in:
@@ -14,7 +14,7 @@ FROM oven/bun:1-alpine AS runtime
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY --from=builder /app/.output ./.output
|
||||
COPY --from=builder /app/dist ./dist
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
@@ -25,4 +25,4 @@ ENV NITRO_PORT=3000
|
||||
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
|
||||
CMD bun -e "fetch('http://localhost:3000/api/health').then(r => r.ok ? process.exit(0) : process.exit(1)).catch(() => process.exit(1))"
|
||||
|
||||
CMD ["bun", "run", "./.output/server/index.mjs"]
|
||||
CMD ["bun", "run", "./dist/server/index.mjs"]
|
||||
|
||||
Reference in New Issue
Block a user