/ bin / sh : apt-get : 찾을 수 없음


117

aspell과 함께 작동하도록 dockerFile을 변경하려고합니다. 도크에 감싸고 싶은 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
도커 컨테이너가 데비안 기반이 아닙니까? 데비안 기반이 아니면 적절한 패키지 관리가 작동하지 않습니다.
Raman Sailopal

나는 기본적으로 현재 질문과 관련이없는 매우 어리석은 위치에 있었지만 여기에 도착한 다른 Google 직원을 구할 수 docker run ubuntu:latest있을 것 docker run -it ubuntu:latest입니다. apt-get컨테이너 내부에서 실행 중이라고 생각 했지만 실제로는 Mac 터미널에있었습니다. 웁스.
MichaelChirico

답변:


335

사용중인 이미지 입니다 알파인 기반으로 사용하지 수 있도록 apt-get이 우분투의 패키지 관리자이기 때문에.

이 문제를 해결하려면 다음을 사용하십시오.

apk updateapk add


14
이것이 Alpine을 사용하여 시작하는 이유를 훼손하거나 여전히 Alpine 이미지를 상당히 가벼운 무게로 유지합니까?
Steven

아래 명령을 변경하는 방법은 무엇입니까? hub.docker.com/r/buildkite/puppeteer/dockerfile
Udhaya

22

이미지를 생성하는 동안 dockerfile 내부를보고 있다면 다음 줄을 추가하십시오.

RUN apk add --update yourPackageName
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.