LangFuse / Dockerfile
Chris4K's picture
Update Dockerfile
c65f9b7 verified
raw
history blame
309 Bytes
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"]