dalabsai/da-discovery-dev
0
1# Dockerfile for da-discovery using pre-built container image2# This Dockerfile pulls a pre-built image from the container registry3FROM docker.io/ahadoop/da-discovery:dev4 5# HF Spaces requires running as user with UID 10006USER 10007 8# Expose the service port (HF Spaces will map this to the configured app_port)9EXPOSE 808010 11# Health check12HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \13 CMD curl -f http://localhost:8080/actuator/health || exit 114 15# The CMD/ENTRYPOINT is inherited from the base image16 