/ bin / sh: apt-get: não encontrado


117

Estou tentando mudar um dockerFile para funcionar com aspell. Eu tenho um script bash que quero embrulhar em um dock

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

estou tentando fazer isso no dockerfile abaixo

# 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"]

o tutorial está desatualizado, então não consigo fazer isso. Pode me ajudar?


5
O contêiner docker não é baseado em Debian? Se não for baseado em Debian, o gerenciamento de pacotes apt não funcionará.
Raman Sailopal

Eu estava em uma posição muito boba, basicamente sem relação com a questão atual, mas talvez possa salvar outro Googler que pousar aqui - eu havia fugido docker run ubuntu:latestquando pretendia fugir docker run -it ubuntu:latest. Achei que estava correndo apt-getdentro do contêiner, mas na verdade estava no terminal Mac. opa
MichaelChirico

Respostas:



22

Se você estiver olhando dentro do dockerfile ao criar a imagem, adicione esta linha:

RUN apk add --update yourPackageName
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.