FROM amazoncorretto:25.0.1-alpine RUN mkdir /app COPY build/libs/discovery.jar /app WORKDIR /app EXPOSE 8080 ENTRYPOINT exec java -jar discovery.jar