Spaces:
Running
Running
| FROM openjdk:17 | |
| WORKDIR ai | |
| ADD swagger_actions.json /ai/conf/swagger_actions.json | |
| ADD springactions-0.2.3.jar /ai/springactions-0.2.3.jar | |
| EXPOSE 7860 | |
| COPY entrypoint.sh /entrypoint.sh | |
| # Make the script executable | |
| RUN chmod +x /entrypoint.sh | |
| # Set the entrypoint | |
| ENTRYPOINT ["/entrypoint.sh"] |