MihoyoBBSTools/Dockerfile

18 lines
442 B
Docker
Raw Normal View History

2022-04-03 05:54:16 +00:00
FROM python:3-alpine
2022-04-19 10:30:40 +00:00
LABEL maintainer="x.yangtze.river@gmail.com"
2021-11-06 11:06:00 +00:00
2022-04-03 05:54:16 +00:00
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
2021-11-06 11:06:00 +00:00
2022-04-03 05:54:16 +00:00
WORKDIR /tmp
ADD requirements.txt ./
2022-08-23 16:50:56 +00:00
RUN pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt
2022-04-03 05:54:16 +00:00
2021-11-06 11:06:00 +00:00
WORKDIR /var/app
COPY . /var/app
2022-04-03 05:54:16 +00:00
CMD ["python3", "./docker.py" ]