0
私自身のドッカーコンテナを作成しようとしています 私の最初の問題は基本インフラストラクチャを集めることです。Dockerfileがビルドに問題を起こしました
これが私のファイルです:
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
後、私は私が私のプライベートビットバケットリポジトリのクローンを作成したいと思い、この問題を解決するときに。
感謝:)
2行目に「RUN」が2行あり、それを修正したことが判明しましたが、まだPGPの重要な問題があります。 –
投稿を編集してその変更を含めてください –