first commit

This commit is contained in:
zc
2026-02-06 11:10:26 +08:00
commit e2bc4b3f80
898 changed files with 135230 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# 基础镜像
FROM openjdk:8-jre
# author
MAINTAINER dcsoft
# 挂载目录
VOLUME /home/dcsoft
# 创建目录
RUN mkdir -p /home/dcsoft
# 指定路径
WORKDIR /home/dcsoft
# 复制jar文件到路径
COPY ./jar/dcsoft-modules-job.jar /home/dcsoft/dcsoft-modules-job.jar
# 启动定时任务服务
ENTRYPOINT ["java","-jar","dcsoft-modules-job.jar"]