feat(Tracer Bullet)

This commit is contained in:
2025-08-11 23:47:05 +02:00
parent 582678e226
commit a50b1b3822
43 changed files with 1665 additions and 292 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM openjdk:17-jre-slim
# Set working directory
WORKDIR /app
# Copy the ping-service JAR file
COPY temp/ping-service/build/libs/*.jar app.jar
# Expose port (will be assigned dynamically by Spring Boot)
EXPOSE 8080
# Add health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=20s --retries=3 \
CMD curl -f http://localhost:8080/ping || exit 1
# Run the application
ENTRYPOINT ["java", "-jar", "app.jar"]