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.
14 lines
243 B
14 lines
243 B
|
3 weeks ago
|
FROM eclipse-temurin:11-jre
|
||
|
|
|
||
|
|
LABEL maintainer="ruoyi"
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY ruoyi-admin/target/*.jar app.jar
|
||
|
|
|
||
|
|
EXPOSE 8080
|
||
|
|
|
||
|
|
ENV JAVA_OPTS="-Xms512m -Xmx1024m -Dspring.profiles.active=prod"
|
||
|
|
|
||
|
|
ENTRYPOINT ["sh", "-c", "java $JAVA_OPTS -jar app.jar"]
|