demo / Dockerfile
ohhhchank3's picture
Update Dockerfile
1d0e62a verified
raw
history blame
245 Bytes
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"]