# Use a base image with Java installed
FROM openjdk:17-jdk

WORKDIR /app

COPY start.sh .

RUN chmod +x /app/start.sh

ENTRYPOINT ["/app/start.sh"]
