我正在尝试构建自己的docker容器, 我的第一个问题是收集基本的基础设施 - 但是docker build throw错误。
这是我的档案:
FROM ubuntu:14.04
RUN apt-get update && RUN apt-get install -y \
git \
curl
RUN curl -sL https://deb.nodesource.com/setup_6.x | -E bash - \
&& apt-get update && apt-get install -y nodejs
构建时出现错误:
et:15 http://archive.ubuntu.com trusty-security/restricted amd64 Packages [20.2 kB]
Get:16 http://archive.ubuntu.com trusty-security/universe amd64 Packages [170 kB]
Get:17 http://archive.ubuntu.com trusty/main Sources [1335 kB]
Get:18 http://archive.ubuntu.com trusty/restricted Sources [5335 B]
Get:19 http://archive.ubuntu.com trusty/universe Sources [7926 kB]
Get:20 http://archive.ubuntu.com trusty/main amd64 Packages [1743 kB]
Get:21 http://archive.ubuntu.com trusty/restricted amd64 Packages [16.0 kB]
Get:22 http://archive.ubuntu.com trusty/universe amd64 Packages [7589 kB]
Fetched 21.8 MB in 23s (918 kB/s)
Reading package lists...
W: GPG error: http://archive.ubuntu.com trusty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 16126D3A3E5C1192
/bin/sh: 1: RUN: not found
The command '/bin/sh -c apt-get update && RUN apt-get install -y git curl' returned a non-zero code: 127
稍后当我解决这个问题时,我想克隆我的私人bitbucket存储库。
谢谢:)
答案 0 :(得分:1)
apt-get install -y ca-certificates
您缺少https功能的基本证书。