Spaces:
Sleeping
Sleeping
File size: 339 Bytes
507cbd5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM openjdk:17-jdk-slim
WORKDIR /app
# Copy the jar file
COPY target/*.jar app.jar
# Expose port 7860 (required by Hugging Face)
EXPOSE 7860
# Set environment variables for Hugging Face Space
ENV SERVER_PORT=7860
ENV SPRING_PROFILES_ACTIVE=prod
# Run the application
ENTRYPOINT ["java", "-Dserver.port=7860", "-jar", "/app/app.jar"]
|