lixinyusiwen commited on
Commit
fe54e09
·
verified ·
1 Parent(s): 2fa32cf

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +134 -0
Dockerfile ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20-slim as nodebuilder
2
+ FROM python:3.11-slim-bullseye as builder
3
+ ARG QL_MAINTAINER="whyour"
4
+ LABEL maintainer="${QL_MAINTAINER}"
5
+ ARG QL_URL=https://github.com/${QL_MAINTAINER}/qinglong.git
6
+ ARG QL_BRANCH=debian
7
+
8
+ ENV QL_DIR=/ql \
9
+ QL_BRANCH=${QL_BRANCH}
10
+
11
+ COPY --from=nodebuilder /usr/local/bin/node /usr/local/bin/
12
+ COPY --from=nodebuilder /usr/local/lib/node_modules/. /usr/local/lib/node_modules/
13
+ RUN set -x && \
14
+ ln -s /usr/local/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm && \
15
+ apt-get update && \
16
+ apt-get install --no-install-recommends -y libatomic1 git && \
17
+ git config --global user.email "qinglong@@users.noreply.github.com" && \
18
+ git config --global user.name "qinglong" && \
19
+ git config --global http.postBuffer 524288000 && \
20
+ git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR}
21
+
22
+ RUN mkdir /tmp/build
23
+ RUN cp ${QL_DIR}/package.json ${QL_DIR}/.npmrc ${QL_DIR}/pnpm-lock.yaml /tmp/build/
24
+
25
+ RUN npm i -g [email protected] && \
26
+ cd /tmp/build && \
27
+ pnpm install --prod
28
+
29
+ FROM python:3.11-slim-bullseye
30
+
31
+ ARG QL_MAINTAINER="whyour"
32
+ LABEL maintainer="${QL_MAINTAINER}"
33
+ ARG QL_URL=https://github.com/${QL_MAINTAINER}/qinglong.git
34
+ ARG QL_BRANCH=debian
35
+
36
+ ENV PNPM_HOME=/root/.local/share/pnpm \
37
+ PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules:$PNPM_HOME \
38
+ NODE_PATH=/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules \
39
+ LANG=C.UTF-8 \
40
+ SHELL=/bin/bash \
41
+ PS1="\u@\h:\w \$ " \
42
+ QL_DIR=/ql \
43
+ QL_BRANCH=${QL_BRANCH}
44
+
45
+ COPY --from=nodebuilder /usr/local/bin/node /usr/local/bin/
46
+ COPY --from=nodebuilder /usr/local/lib/node_modules/. /usr/local/lib/node_modules/
47
+
48
+ RUN set -x && \
49
+ ln -s /usr/local/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm && \
50
+ ln -s /usr/local/lib/node_modules/npm/bin/npx-cli.js /usr/local/bin/npx && \
51
+ apt-get update && \
52
+ apt-get upgrade -y && \
53
+ apt-get install --no-install-recommends -y git \
54
+ curl \
55
+ cron \
56
+ wget \
57
+ tzdata \
58
+ perl \
59
+ openssl \
60
+ openssh-client \
61
+ nginx \
62
+ jq \
63
+ procps \
64
+ netcat \
65
+ sshpass \
66
+ rclone \
67
+ unzip \
68
+ libatomic1 && \
69
+ apt-get clean && \
70
+ ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
71
+ echo "Asia/Shanghai" >/etc/timezone && \
72
+ git config --global user.email "qinglong@@users.noreply.github.com" && \
73
+ git config --global user.name "qinglong" && \
74
+ git config --global http.postBuffer 524288000 && \
75
+ npm install -g [email protected] pm2 ts-node && \
76
+ rm -rf /root/.pnpm-store && \
77
+ rm -rf /root/.local/share/pnpm/store && \
78
+ rm -rf /root/.cache && \
79
+ rm -rf /root/.npm && \
80
+ chmod u+s /usr/sbin/cron && \
81
+ ulimit -c 0
82
+
83
+ ARG SOURCE_COMMIT
84
+ RUN git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} && \
85
+ cd ${QL_DIR} && \
86
+ cp -f .env.example .env && \
87
+ chmod 777 ${QL_DIR}/shell/*.sh && \
88
+ chmod 777 ${QL_DIR}/docker/*.sh && \
89
+ git clone --depth=1 -b ${QL_BRANCH} https://github.com/${QL_MAINTAINER}/qinglong-static.git /static && \
90
+ mkdir -p ${QL_DIR}/static && \
91
+ cp -rf /static/* ${QL_DIR}/static && \
92
+ rm -rf /static && \
93
+ rm -f ${QL_DIR}/docker/docker-entrypoint.sh
94
+
95
+ COPY docker-entrypoint.sh ${QL_DIR}/docker
96
+
97
+ RUN mkdir /ql/data && \
98
+ mkdir /ql/data/config && \
99
+ mkdir /ql/data/log && \
100
+ mkdir /ql/data/db && \
101
+ mkdir /ql/data/scripts && \
102
+ mkdir /ql/data/repo && \
103
+ mkdir /ql/data/raw && \
104
+ mkdir /ql/data/deps && \
105
+ chmod -R 777 /ql && \
106
+ chmod -R 777 /var && \
107
+ chmod -R 777 /usr/local && \
108
+ chmod -R 777 /etc/nginx && \
109
+ chmod -R 777 /run && \
110
+ chmod -R 777 /usr && \
111
+ chmod -R 777 /root
112
+
113
+ COPY --from=builder /tmp/build/node_modules/. /ql/node_modules/
114
+
115
+ WORKDIR ${QL_DIR}
116
+
117
+
118
+ # Set up a new user named "user" with user ID 1000
119
+ RUN useradd -m -u 1000 user
120
+
121
+ # Switch to the "user" user
122
+ USER user
123
+
124
+ # 创建rclone配置文件
125
+ RUN rclone config -h
126
+
127
+ HEALTHCHECK --interval=5s --timeout=2s --retries=20 \
128
+ CMD curl -sf --noproxy '*' http://127.0.0.1:5400/api/health || exit 1
129
+
130
+ ENTRYPOINT ["./docker/docker-entrypoint.sh"]
131
+
132
+ VOLUME /ql/data
133
+
134
+ EXPOSE 5700