Dockerfile与构build问题

我试图编写我自己的docker集装箱,我的第一个问题是收集基本的基础设施 – 然而docker构build抛出错误。

这是我的文件:

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 

这是build立时的错误:

 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存储库。

谢谢 :)

 apt-get install -y ca-certificates 

您缺lesshttpsfunction的基础证书。