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 harbor.oa00.com/library/openjdk:8-jdk-alpine
|
|
# 从编译阶段的中拷贝编译结果到当前镜像中
|
|
COPY ./target/project0512-0.0.1-SNAPSHOT.jar /work/project0512-0.0.1-SNAPSHOT.jar
|
|
WORKDIR /work
|
|
ENTRYPOINT ["java","-jar","project0512-0.0.1-SNAPSHOT.jar","--spring.profiles.active=test"]
|
|
|