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.
13 lines
349 B
13 lines
349 B
1 year ago
|
# Docker 镜像构建
|
||
|
FROM maven:3.8.1-jdk-8-slim as builder
|
||
|
|
||
|
# Copy local code to the container image.
|
||
|
WORKDIR /app
|
||
|
COPY pom.xml .
|
||
|
COPY src ./src
|
||
|
|
||
|
# Build a release artifact.
|
||
|
RUN mvn package -DskipTests
|
||
|
|
||
|
# Run the web service on container startup.
|
||
|
CMD ["java","-jar","/app/target/springboot-init-0.0.1-SNAPSHOT.jar","--spring.profiles.active=prod"]
|