demo_hmdrinks / Dockerfile
ohhhchank3's picture
Update Dockerfile
c4b1a16 verified
raw
history blame contribute delete
296 Bytes
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 8080
COPY entrypoint.sh /entrypoint.sh
# Make the script executable
RUN chmod +x /entrypoint.sh
# Set the entrypoint
ENTRYPOINT ["/entrypoint.sh"]