Created
June 21, 2019 08:24
-
-
Save juliuscanute/b1f5fe689a4c09a7936835c60221c5c7 to your computer and use it in GitHub Desktop.
Spring Boot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM anapsix/alpine-java | |
RUN mkdir -p /usr/springboot | |
COPY ./target/api-0.0.1-SNAPSHOT.jar /usr/springboot | |
WORKDIR /usr/springboot | |
EXPOSE 8080 | |
CMD ["java", "-jar", "api-0.0.1-SNAPSHOT.jar"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment