@whyour/qinglong 0.7.5 → 0.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docker/Dockerfile
CHANGED
|
@@ -33,7 +33,6 @@ COPY --from=nodebuilder /usr/local/lib/node_modules/. /usr/local/lib/node_module
|
|
|
33
33
|
|
|
34
34
|
RUN set -x && \
|
|
35
35
|
ln -s /usr/local/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm && \
|
|
36
|
-
sed -i 's/deb.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list && \
|
|
37
36
|
apt update && \
|
|
38
37
|
apt upgrade -y && \
|
|
39
38
|
apt install --no-install-recommends -y git \
|
package/package.json
CHANGED
|
@@ -188,7 +188,7 @@ let DependenceService = class DependenceService {
|
|
|
188
188
|
return resolve(null);
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
|
-
const cp = (0, cross_spawn_1.spawn)(`source ${config_1.default.shareShellFile} && ${depRunCommand} ${dependency.name.trim()}`, {
|
|
191
|
+
const cp = (0, cross_spawn_1.spawn)(`source ${config_1.default.shareShellFile} && set_proxy && ${depRunCommand} ${dependency.name.trim()}`, {
|
|
192
192
|
shell: '/bin/bash',
|
|
193
193
|
});
|
|
194
194
|
cp.stdout.on('data', async (data) => {
|