mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 01:21:48 +03:00
fix(frontend): fix docker build frontend new env (#3041)
# Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
This commit is contained in:
parent
1a718ba654
commit
51936e506e
@ -30,6 +30,7 @@ ARG NEXT_PUBLIC_SUPABASE_ANON_KEY
|
||||
ARG NEXT_PUBLIC_CMS_URL
|
||||
ARG NEXT_PUBLIC_FRONTEND_URL
|
||||
ARG NEXT_PUBLIC_AUTH_MODES # Make sure this is declared here if it influences the build
|
||||
ARG NEXT_PUBLIC_SHOW_TOKENS
|
||||
|
||||
ENV NEXT_PUBLIC_ENV=$NEXT_PUBLIC_ENV
|
||||
ENV NEXT_PUBLIC_BACKEND_URL=$NEXT_PUBLIC_BACKEND_URL
|
||||
@ -38,6 +39,7 @@ ENV NEXT_PUBLIC_SUPABASE_ANON_KEY=$NEXT_PUBLIC_SUPABASE_ANON_KEY
|
||||
ENV NEXT_PUBLIC_CMS_URL=$NEXT_PUBLIC_CMS_URL
|
||||
ENV NEXT_PUBLIC_FRONTEND_URL=$NEXT_PUBLIC_FRONTEND_URL
|
||||
ENV NEXT_PUBLIC_AUTH_MODES=$NEXT_PUBLIC_AUTH_MODES
|
||||
ENV NEXT_PUBLIC_SHOW_TOKENS=$NEXT_PUBLIC_SHOW_TOKENS
|
||||
|
||||
|
||||
# Next.js collects completely anonymous telemetry data about general usage.
|
||||
|
Loading…
Reference in New Issue
Block a user