deployment of springboot application using AWS EC2 instance via MobaXterm software for creation of Dockerfileand dockerimage #109
Unanswered
Rahulpersie66
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
i am facing issue while creating docker image of the sprinboot application in mobaXterm software, it is not detecting my jar file from target folder...
Dockerfile-
FROM openjdk:11
LABEL maintainer="AWS Rahul"
ADD ./target/Test-springBoot-0.0.1-SNAPSHOT.jar springboot-docker-demo.jar
ENTRYPOINT ["java","-jar","springboot-docker-demo.jar" ]
All reactions