/ bin / sh: apt-get: non trovato


117

Sto cercando di modificare un dockerFile per lavorare con aspell. Ho uno script bash che voglio avvolgere in 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

Sto provando a farlo sul dockerfile di seguito

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

il tutorial è obsoleto quindi non riesco a farlo. Mi potete aiutare?


5
Il contenitore docker non è basato su Debian? Se non è basato su Debian, la gestione dei pacchetti apt non funzionerà.
Raman Sailopal

Mi trovavo in una posizione molto sciocca sostanzialmente estranea alla domanda attuale, ma forse posso salvare un altro googler che atterra qui: avevo corso docker run ubuntu:latestquando volevo correre docker run -it ubuntu:latest. Pensavo di essere in esecuzione apt-getall'interno del contenitore, ma in realtà era nel terminale Mac. whoops.
MichaelChirico

Risposte:



22

Se stai guardando all'interno del dockerfile durante la creazione dell'immagine, aggiungi questa riga:

RUN apk add --update yourPackageName
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.