adding a dockerfile and instructions on how to try out the app in a container
This commit is contained in:
24
Dockerfile
Normal file
24
Dockerfile
Normal file
@@ -0,0 +1,24 @@
|
||||
FROM gradle:jdk-alpine
|
||||
|
||||
WORKDIR /home/gradle/project
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
USER root
|
||||
|
||||
RUN apk update
|
||||
|
||||
ENV GRADLE_USER_HOME /home/gradle/project
|
||||
|
||||
COPY . /home/gradle/project
|
||||
|
||||
RUN gradle build
|
||||
|
||||
|
||||
FROM java:jre-alpine
|
||||
|
||||
WORKDIR /home/gradle/project
|
||||
|
||||
COPY --from=0 /home/gradle/project/build/libs/project-0.0.1-SNAPSHOT.jar .
|
||||
|
||||
ENTRYPOINT java -jar project-0.0.1-SNAPSHOT.jar
|
||||
Reference in New Issue
Block a user