/ bin / sh:apt-get:見つかりません


117

dockerFileをaspellで動作するように変更しようとしています。ドックにラップしたいbashスクリプトがあります

Step 4: Wrap the script in a Docker container.

The sample SDK we downloaded earlier contains an example of an action wrapped in a Docker container. In particular, the sample SDK includes a Dockerfile that builds the C program in client/example.c and installs the binary as /blackbox/client/action .

The key line in the sample Dockerfile is:

RUN cd /blackbox/client; gcc -o action example.c

Instead of compiling example.c and installing the binary as an action, well change the Dockerfile to install aspell into the Linux environment, and then install our action.sh script as the executable action command.

To do so, we delete the RUN command above, and insert the following commands into the Dockerfile:

RUN apt-get install -y aspell
RUN rm -f /blackbox/client/action
ADD action.sh /blackbox/client/action

私は下のdockerfileでこれをやろうとしています

# Dockerfile for example whisk docker action
FROM openwhisk/dockerskeleton

ENV FLASK_PROXY_PORT 8080

### Add source file(s)
ADD example.c /action/example.c

RUN sudo apt-get install -y aspell
RUN rm -f /blackbox/client/action
ADD action.sh /blackbox/client/action



CMD ["/home/huseyin/bin", "-c", "cd actionProxy && python -u actionproxy.py"]

チュートリアルが古いため、成功できません。手伝って頂けますか?


5
dockerコンテナーはDebianベースではありませんか?Debianベースでない場合、aptパッケージ管理は機能しません。
ラマンサイロパル2017

私は基本的に現在の質問とは無関係の非常にばかげた立場にありましたが、おそらくここに着陸した別のGoogle社員を救うことができdocker run ubuntu:latestますdocker run -it ubuntu:latestapt-getコンテナー内で実行していると思いましたが、実際はMacターミナルでした。おっと。
MichaelChirico

回答:


335

使用しているイメージアルパインベースでありapt-getUbuntuのパッケージマネージャーであるため使用できません。

これを修正するには、以下を使用します。

apk update そして apk add


14
これは、最初にアルパインを使用する理由を損なうのですか、それともアルパインのイメージをかなり軽量に保つのですか?
スティーブン

以下のコマンドを変更するには?hub.docker.com/r/buildkite/puppeteer/dockerfile
ウダヤ

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.