/ bin / sh: apt-get: no encontrado

117

Estoy tratando de cambiar un dockerFile para que funcione con aspell. Tengo un script bash que quiero envolver en un 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

estoy tratando de hacer esto en el archivo docker a continuación

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

el tutorial está desactualizado, por lo que no puedo hacerlo correctamente. ¿Me puedes ayudar?

Hüseyin Orkun Elmas
fuente
5
¿El contenedor de la ventana acoplable no está basado en Debian? Si no está basado en Debian, la gestión de paquetes apt no funcionará.
Raman Sailopal
Estaba en una posición muy tonta básicamente sin relación con la pregunta actual, pero tal vez pueda salvar a otro Googler que aterrice aquí; había corrido docker run ubuntu:latestcuando tenía la intención de hacerlo docker run -it ubuntu:latest. Pensé que estaba corriendo apt-getdentro del contenedor, pero en realidad estaba en la terminal Mac. ¡Ups!
MichaelChirico

Respuestas:

22

Si está mirando dentro de dockerfile mientras crea la imagen, agregue esta línea:

RUN apk add --update yourPackageName
Venu Gopal Tewari
fuente