CoolFace
Apppublic

Az1717/Unique_unknown

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM langfuse/langfuse:22 3USER root4 5# Install PostgreSQL and necessary dependencies6RUN apk update && apk add --no-cache \7    postgresql \8    postgresql-contrib \9    net-tools \10    iproute2 \11    sed12 13# Copy and set up the wrapper script14COPY docker-entrypoint-wrapper.sh /docker-entrypoint-wrapper.sh15RUN chmod +x /docker-entrypoint-wrapper.sh16 17EXPOSE 300018 19ENTRYPOINT ["dumb-init", "--", "/docker-entrypoint-wrapper.sh"]