# * bash: For entrypoint, and debugging # * ca-certificates: for SSL verification during Pip and easy_install # * python: the binaries themselves # * openblas: required for numpy. # * libaio libnsl: for cx_Oracle ENV PACKAGES="\ dumb-init \ bash vim tini \ ca-certificates \ python3=...
在终端中执行以下命令: # 更新系统apk update# 安装依赖包apkaddcurlapkaddwgetapkaddca-certificates apkaddtar 1. 2. 3. 4. 5. 6. 7. 8. apk update:更新系统包管理器的软件包列表。 apk add:使用 Alpine 包管理器安装所需的软件包。我们需要安装 curl、wget、ca-certificates 和 tar。 步骤2:下载并...
2.2 安装依赖 在安装 Dockerfile 之前,需要先安装一些依赖包。在终端中执行以下命令: apkadd--update\curl\python\py-pip\openssl\ca-certificates\git\bash 1. 2. 3. 4. 5. 6. 7. 8. apk add是 Alpine Linux 包管理工具,用于安装软件包 --update参数表示更新软件包列表 依次安装上述列出的软件包 2.3 ...
ca-certificates \ curl \ gnupg \ lsb-release 1. 2. 3. 4. 5. 6. 7. 鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。 为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。 $ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo gpg --dearmor -o ...
apk --no-cache add ca-certificates wget && \ wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub && \ wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.30-r0/glibc-2.30-r0.apk && \ ...