Spaces:
Paused
Paused
| FROM langfuse/langfuse:latest | |
| # Generate secrets | |
| RUN openssl rand -base64 32 > /nextauth_secret.txt | |
| RUN openssl rand -base64 32 > /salt.txt | |
| # Set environment variables from generated secrets | |
| ENV NEXTAUTH_SECRET=$(cat /nextauth_secret.txt) | |
| ENV SALT=$(cat /salt.txt) | |
| EXPOSE 3000 | |
| CMD ["docker-compose", "up"] |