下载地址:
https://github.com/cookiey/yearning/releases
FROM ubuntu
LABEL maintainer="liuxueliang-2021/09/06"
EXPOSE 8000
COPY Yearning /opt/Yearning
COPY conf.toml /opt/conf.toml
#RUN echo "http://mirrors.ustc.edu.cn/alpine/v3.12/main/" > /etc/apk/repositories &&
# apk add --no-cache tzdata libc6-compat &&
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime &&
echo "Asia/Shanghai" >> /etc/timezone &&
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf
WORKDIR /opt
CMD /opt/Yearning install && /opt/Yearning run
使用 docker build -t 打包成容器镜像启动即可



