Skip to content

Commit

Permalink
简单的docker 打镜像
Browse files Browse the repository at this point in the history
  • Loading branch information
caelumlux committed Jan 27, 2024
1 parent 4f0e8c0 commit bfd9da2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile-caelum
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 使用JRE镜像运行应用程序
FROM openjdk:11-jre-slim
# 设置工作目录
WORKDIR /app
# 复制项目文件到容器的工作目录中
COPY . /app
# 暴露项目运行的端口号
EXPOSE 8080
# 启动项目
CMD java -jar unidbg-fetch-qsign-all.jar --basePath=./txlib/$VERSION

0 comments on commit bfd9da2

Please sign in to comment.