InstaService / Dockerfile
VishalMysore's picture
Upload Dockerfile
4318609 verified
FROM openjdk:17
WORKDIR ai
ADD InstaService-1.0-SNAPSHOT.jar /ai/InstaService-1.0-SNAPSHOT.jar
EXPOSE 7860
COPY entrypoint.sh /entrypoint.sh
# Make the script executable
RUN chmod +x /entrypoint.sh
# Set the entrypoint
ENTRYPOINT ["/entrypoint.sh"]