💚 Fix Docker build missing env

This commit is contained in:
Baptiste Arnaud 2025-12-07 10:04:32 +01:00
parent b16af6e928
commit 4e9f9e7801
No known key found for this signature in database

View File

@ -1,5 +1,5 @@
# ================= INSTALL BUN ===================
ARG BUN_VERSION=1.3.0
ARG BUN_VERSION=1.3.3
FROM debian:bullseye-slim AS build-bun
ARG BUN_VERSION
RUN apt-get update -qq \
@ -92,7 +92,7 @@ COPY --from=pruned /app/out/full/ .
COPY bun.lock .
COPY bunfig.toml .
RUN SENTRYCLI_SKIP_DOWNLOAD=1 bun install
RUN SKIP_ENV_CHECK=true bunx turbo build --filter="${SCOPE}"
RUN SKIP_ENV_CHECK=true NEXT_PUBLIC_VIEWER_URL=http://localhost bunx turbo build --filter="${SCOPE}"
# ================== RELEASE ======================