Create Dockerfile

This commit is contained in:
themajerr 2023-07-10 12:28:44 +02:00 committed by GitHub
parent 0e671ee97c
commit 9abc930921
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM eclipse-temurin:17.0.6_10-jre-alpine
RUN mkdir /opt/app
COPY ./build/*.jar /opt/app/app.jar
CMD ["java", "-jar", "/opt/app/app.jar"]