mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
更新dockerfile
This commit is contained in:
parent
ee84cbca51
commit
a0ce1562ac
|
@ -31,25 +31,13 @@ RUN set -x \
|
|||
python2 \
|
||||
g++ \
|
||||
make \
|
||||
sqlite \
|
||||
sqlite-dev \
|
||||
&& git clone -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} \
|
||||
&& git config --global user.email "qinglong@@users.noreply.github.com" \
|
||||
&& git config --global user.name "qinglong" \
|
||||
&& wget https://github.com/mapbox/node-sqlite3/archive/v5.0.2.zip -O /ql/sqlite3.zip \
|
||||
&& mkdir -p /ql/sqlite3 \
|
||||
&& mkdir -p /ql/node_modules/sqlite3 \
|
||||
&& unzip /ql/sqlite3.zip -d /ql/sqlite3 \
|
||||
&& cd /ql/sqlite3/node-sqlite3-5.0.2 \
|
||||
&& npm install \
|
||||
&& ./node_modules/.bin/node-pre-gyp install --fallback-to-build --build-from-source --sqlite=/usr/bin --python=$(which python) \
|
||||
&& mv /ql/sqlite3/node-sqlite3-5.0.2 /ql/node_modules/sqlite3 \
|
||||
&& apk del g++ make python2 \
|
||||
&& rm -Rf /ql/sqlite3 /ql/sqlite3.zip \
|
||||
&& rm -rf /var/cache/apk/* \
|
||||
&& ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
|
||||
&& echo "Asia/Shanghai" > /etc/timezone \
|
||||
&& touch ~/.bashrc \
|
||||
&& git clone -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} \
|
||||
&& git config --global user.email "qinglong@@users.noreply.github.com" \
|
||||
&& git config --global user.name "qinglong" \
|
||||
&& cd ${QL_DIR} \
|
||||
&& cp -f .env.example .env \
|
||||
&& chmod 777 ${QL_DIR}/shell/*.sh \
|
||||
|
|
|
@ -87,6 +87,9 @@ const EditModal = ({
|
|||
};
|
||||
|
||||
const stop = () => {
|
||||
if (!cNode || !cNode.value) {
|
||||
return;
|
||||
}
|
||||
request
|
||||
.put(`${config.apiPrefix}scripts/stop`, {
|
||||
data: {
|
||||
|
|
Loading…
Reference in New Issue
Block a user