Create Dockerfile

This commit is contained in:
Halilović Adis 2021-06-26 13:13:58 +02:00 committed by GitHub
parent f3c642eeb7
commit b973965dd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM openjdk:latest
WORKDIR /tmp/
COPY . .
RUN ./mvnw package
EXPOSE 8080
CMD java -jar target/*.jar