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.
21 lines
435 B
21 lines
435 B
FROM registry.ap-northeast-1.aliyuncs.com/southwave/jdk17-template:latest
|
|
# FROM openjdk:17-jdk
|
|
ENV TZ=Asia/Tokyo
|
|
WORKDIR /home/data-center-dashboard
|
|
|
|
#EXPOSE 20008
|
|
|
|
# 设置时区
|
|
#RUN /bin/cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' >/etc/timezone
|
|
|
|
ARG JAR_FILE
|
|
ARG LIB_DIR
|
|
ARG CONFIG_DIR
|
|
|
|
COPY ${JAR_FILE} app.jar
|
|
COPY ${LIB_DIR} lib
|
|
COPY ${CONFIG_DIR} config
|
|
|
|
ENTRYPOINT ["java","-jar","app.jar"]
|
|
|
|
|
|
|