Spaces:
Runtime error
Runtime error
| FROM openjdk:17 | |
| WORKDIR ai | |
| ADD HMDRINKS-0.0.1-SNAPSHOT.jar /ai/HMDRINKS-0.0.1-SNAPSHOT.jar | |
| EXPOSE 1010 | |
| COPY entrypoint.sh /entrypoint.sh | |
| # Make the script executable | |
| RUN chmod +x /entrypoint.sh | |
| # Set the entrypoint | |
| ENTRYPOINT ["/entrypoint.sh"] |