langfuse-space / Dockerfile
Adilmar's picture
Update Dockerfile
a572660 verified
raw
history blame contribute delete
415 Bytes
FROM langfuse/langfuse:2
USER root
# Install only necessary dependencies (no PostgreSQL needed since using Neon)
RUN apk update && apk add --no-cache \
net-tools \
iproute2 \
sed
# Copy and set up the wrapper script
COPY docker-entrypoint-wrapper.sh /docker-entrypoint-wrapper.sh
RUN chmod +x /docker-entrypoint-wrapper.sh
EXPOSE 3000
ENTRYPOINT ["dumb-init", "--", "/docker-entrypoint-wrapper.sh"]