You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FROM openjdk:17-jdk-alpine
|
|
|
|
ARG APP_PORT=8080
|
|
|
|
EXPOSE ${APP_PORT}
|
|
|
|
ADD target/demo-0.0.1-SNAPSHOT.jar app.jar
|
|
|
|
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]
|