ci(sentry): wire build-time vars into image build#168
Merged
Conversation
- Add NEXT_PUBLIC_SENTRY_DSN, SENTRY_ORG, SENTRY_PROJECT as builder-stage ARG/ENV so next build inlines the DSN and withSentryConfig uploads source maps - Consume SENTRY_AUTH_TOKEN via a BuildKit secret (id: sentry_auth, required=false); the token never lands in an image layer, build arg, or the runtime image - Add # syntax=docker/dockerfile:1 for secret mount support - Pass the three public vars via build-args and the token via the build-push-action secrets: input in the release workflow
arbisoft-qaisarirfan
approved these changes
Jul 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Closes the delivery-pipeline gap left by #165 (Sentry SDK integration): supplies the four Sentry build-time variables to
next buildso the released frontend image is Sentry-instrumented.Changes
Dockerfile
NEXT_PUBLIC_SENTRY_DSN,SENTRY_ORG,SENTRY_PROJECT→ builder-stageARG/ENV, sonext buildinlines the DSN andwithSentryConfiguploads source maps.SENTRY_AUTH_TOKEN→ BuildKit secret mount (id=sentry_auth,required=false); never anARG/ENV, never in an image layer,docker history, or the runtime image.# syntax=docker/dockerfile:1for secret-mount support..github/workflows/build-and-push-container-image.yml
build-argsfrom repo secrets.SENTRY_AUTH_TOKENpassed viadocker/build-push-actionsecrets:(sentry_auth).Required Actions secrets
NEXT_PUBLIC_SENTRY_DSN,SENTRY_ORG,SENTRY_PROJECT,SENTRY_AUTH_TOKEN. Without the token the build still succeeds (source-map upload skipped).Notes