1 Star 0 Fork 1.6K

平果果 / nginxWebUI

forked from 陈钇蒙 / nginxWebUI 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 811 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈钇蒙 提交于 2023-04-22 11:10 . 1
FROM alpine:3.17
ENV LANG=zh_CN.UTF-8 \
TZ=Asia/Shanghai \
PS1="\u@\h:\w \$ "
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories \
&& apk add --update --no-cache \
nginx \
nginx-mod-stream \
nginx-mod-http-headers-more \
openjdk8-jre \
net-tools \
curl \
wget \
ttf-dejavu \
fontconfig \
tzdata \
tini \
acme.sh \
&& fc-cache -f -v \
&& ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime \
&& echo "${TZ}" > /etc/timezone \
&& rm -rf /var/cache/apk/* /tmp/*
COPY target/nginxWebUI-*.jar /home/nginxWebUI.jar
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN ["chmod", "+x", "/usr/local/bin/entrypoint.sh"]
VOLUME ["/home/nginxWebUI"]
ENTRYPOINT ["tini", "entrypoint.sh"]
Java
1
https://gitee.com/pingguoguo1/nginxWebUI.git
git@gitee.com:pingguoguo1/nginxWebUI.git
pingguoguo1
nginxWebUI
nginxWebUI
master

搜索帮助