first commit

This commit is contained in:
lxk0301
2020-11-10 09:29:58 +08:00
commit a9ab013e1d
141 changed files with 22316 additions and 0 deletions

23
docker/Dockerfile Normal file
View File

@ -0,0 +1,23 @@
FROM alpine
MAINTAINER Akira <e.akimoto.akira@gmail.com>
RUN set -ex \
&& apk update && apk upgrade\
&& apk add --no-cache tzdata git nodejs npm\
&& ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& echo "Asia/Shanghai" > /etc/timezone
RUN git clone https://github.com/lxk0301/scripts /scripts \
&& cd /scripts \
&& mkdir logs \
&& npm install \
&& cd ~ \
&& npm install request
ENV CDN_JD_DAILYBONUS true
RUN crontab /scripts/docker/crontab_list.sh
WORKDIR /scripts
CMD ["node"]