Dockerfile Created

This commit is contained in:
Sumedh
2024-08-08 13:12:06 +00:00
parent a6b4030141
commit c74879b5bc

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM amazoncorretto:21-al2023
VOLUME /tmp
EXPOSE 8082
ARG JAR_FILE=target/apollo-0.0.1-SNAPSHOT.jar
# Add the application's jar to the container
ADD ${JAR_FILE} /apollo.jar
ENTRYPOINT ["java","-jar","/apollo.jar"]