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.

10 lines
230 B

2 years ago
# 编译
FROM maven:3.8-openjdk-8
2 years ago
WORKDIR /data/wwwroot/docker/maven/build
2 years ago
COPY lingnuo-0.0.1.jar app.jar
2 years ago
RUN bash -c "touch /app.jar"
2 years ago
EXPOSE 8080
2 years ago
ENTRYPOINT ["java","-jar","lingnuo-0.0.1.jar","--spring.profiles.active=test"]