Use Alibaba Cloud Repository
Alpine OS
配置方法
a. 编辑 /etc/apk/repositories
b. 将里面 dl-cdn.alpinelinux.org 的 改成 mirrors.aliyun.com ; 保存退出即可
b. 将里面 dl-cdn.alpinelinux.org 的 改成 mirrors.aliyun.com ; 保存退出即可
Docker 用alpine作为基础镜像
在Dockerfile运行apk之前要先替换为阿里alpine镜像源如下:
# syntax=docker/dockerfile:1
FROM node:12-alpine
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk add --no-cache python2 g++ make
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]
npm and yarn
可以在终端或命令提示符或PowerShell里面执行下面的命令设置:
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global
PIP
$ pip install scrapy -i https://mirrors.aliyun.com/pypi/simple/
Comments
Post a Comment