Files
JChargePointProtocol/docker/base.Dockerfile

15 lines
349 B
Docker
Raw Permalink Normal View History

2024-10-08 09:38:54 +08:00
#
2025-03-04 10:42:17 +08:00
# 开源代码,仅供学习和交流研究使用,商用请联系三丙
# 微信mohan_88888
# 抖音:程序员三丙
# 付费课程知识星球https://t.zsxq.com/aKtXo
2024-10-08 09:38:54 +08:00
#
2025-03-04 10:42:17 +08:00
FROM registry.cn-hangzhou.aliyuncs.com/sanbing/openjdk:21-bullseye AS base
2024-10-08 09:38:54 +08:00
WORKDIR /app
COPY . .
RUN mvn -U -B -T 4 clean compile -DskipTests \
2024-11-29 17:48:41 +08:00
&& rm -rf /app
2024-10-08 09:38:54 +08:00