We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb4821f commit b2009feCopy full SHA for b2009fe
docker/app.Dockerfile
@@ -49,6 +49,11 @@ WORKDIR /app
49
ARG DATABASE_URL="postgresql://user:pass@localhost:5432/dummy"
50
ENV DATABASE_URL=${DATABASE_URL}
51
52
+# Provide dummy NEXT_PUBLIC_APP_URL for build-time evaluation
53
+# Runtime environments should override this with the actual URL
54
+ARG NEXT_PUBLIC_APP_URL="http://localhost:3000"
55
+ENV NEXT_PUBLIC_APP_URL=${NEXT_PUBLIC_APP_URL}
56
+
57
RUN bun run build
58
59
# ========================================
0 commit comments