vectorx / Dockerfile
VishalMysore's picture
Upload 3 files
22777c6 verified
raw
history blame
246 Bytes
FROM openjdk:17
WORKDIR ai
ADD VectorX-1.0-SNAPSHOT.jar /ai/VectorX-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"]