Commit e763b6a2 by zhangxingmin

push

parent 1aa611bd
# 基础镜像 # 基础镜像
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment