18 lines
541 B
Docker
18 lines
541 B
Docker
FROM arm32v6/python:3-alpine
|
|
COPY qemu-arm-static /usr/bin/
|
|
LABEL maintainer="x.yangtze.river@gmail.com"
|
|
|
|
ENV CRON_SIGNIN='30 9 * * *'
|
|
ENV MULTI=TRUE
|
|
ENV TZ=Asia/Shanghai
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories \
|
|
&& apk add --no-cache tzdata git
|
|
|
|
RUN git clone https://github.com/Womsxd/AutoMihoyoBBS app
|
|
WORKDIR /app
|
|
RUN pip3 install -i https://mirrors.cloud.tencent.com/pypi/simple -r requirements.txt
|
|
|
|
CMD ["python3", "./docker.py" ]
|
|
|
|
|
|
#挂载本地 config文件夹 到 /app/config 下 |