leo-shakudo

Results 3 comments of leo-shakudo

I had this issue as well, and the solution was to add the following environment variable in the Dockerfile before building the image: ``` ARG NEXT_PUBLIC_PROMPTFOO_REMOTE_APP_BASE_URL ENV NEXT_PUBLIC_PROMPTFOO_REMOTE_APP_BASE_URL=${NEXT_PUBLIC_PROMPTFOO_REMOTE_APP_BASE_URL} ``` and...

@typpo Sorry to ping you directly, but I would really appreciate if you could chime in on the last question in my previous comment.

Found an alternative by moving the build stage into the container (npm install inside entrypoint.sh), which is obviously slower, but I am now able to use container env variables which...