Saya mencoba untuk mengubah dockerFile untuk bekerja dengan aspell. Saya memiliki skrip bash yang ingin saya bungkus di dok
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, we’ll 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
saya mencoba melakukan ini di dockerfile di bawah ini
# 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"]
tutorialnya sudah usang sehingga saya tidak bisa berhasil melakukannya. Bisakah kamu membantuku?
bash
docker
dockerfile
aspell
Hüseyin Orkun Elmas
sumber
sumber
docker run ubuntu:latest
ketika saya bermaksud untuk laridocker run -it ubuntu:latest
. Saya pikir saya sedang menjalankanapt-get
di dalam wadah, tetapi sebenarnya di terminal Mac. ups.Jawaban:
The gambar yang Anda gunakan adalah berdasarkan Alpine , sehingga Anda tidak dapat menggunakan
apt-get
karena itu manajer paket Ubuntu.Untuk memperbaikinya gunakan saja:
apk update
danapk add
sumber
Jika Anda mencari di dalam dockerfile saat membuat gambar, tambahkan baris ini:
sumber