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.

20 lines
612 B

FROM arm64v8/openjdk:11 as builder
WORKDIR /application
ARG JAR_FILE=tcmonline-admin.jar
COPY ${JAR_FILE} application.jar
RUN java -Djarmode=layertools -jar application.jar extract
FROM arm64v8/openjdk:11
WORKDIR /application
COPY --from=builder application/dependencies/ ./
COPY --from=builder application/snapshot-dependencies/ ./
COPY --from=builder application/spring-boot-loader/ ./
COPY --from=builder application/application/ ./
COPY docker-entrypoint.sh ./
RUN chmod +x docker-entrypoint.sh
# 安装Redis
RUN apt-get update && apt-get install -y redis-server
ENTRYPOINT ["./docker-entrypoint.sh"]