Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-oss
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-oss
Commits
e763b6a2
Commit
e763b6a2
authored
Oct 13, 2025
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
1aa611bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletions
+15
-1
yd-oss-api/Dockerfile
+15
-1
No files found.
yd-oss-api/Dockerfile
View file @
e763b6a2
# 基础镜像
# 基础镜像
FROM
openjdk:8
FROM
openjdk:8
# 维护人
# 维护人
LABEL
maintainer="zxm<2060197959@qq.com>"
LABEL
maintainer="zxm<2060197959@qq.com>"
# 创建目录
# 创建目录
RUN
mkdir
-p
/home/app
RUN
mkdir
-p
/home/app
# 安装 LibreOffice
RUN
apt-get update
&&
\
apt-get install
-y
libreoffice
&&
\
apt-get install
-y
libreoffice-writer
&&
\
apt-get install
-y
fonts-liberation fonts-dejavu
&&
\
apt-get clean
&&
\
rm
-rf
/var/lib/apt/lists/
*
# 拷贝项目jar - 使用可执行的 fat JAR
# 拷贝项目jar - 使用可执行的 fat JAR
COPY
target/yd-oss-api-1.0-SNAPSHOT-exec.jar /home/app/yd-oss-api.jar
COPY
target/yd-oss-api-1.0-SNAPSHOT-exec.jar /home/app/yd-oss-api.jar
# 执行命令启动jar
# 执行命令启动jar
ENTRYPOINT
["java", "-jar", "/home/app/yd-oss-api.jar"]
ENTRYPOINT
["java", "-jar", "/home/app/yd-oss-api.jar"]
# 暴露端口
# 暴露端口
EXPOSE
9106
EXPOSE
9106
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment