Tôi đang cố gắng thay đổi một dockerFile để làm việc với aspell. Tôi có một tập lệnh bash mà tôi muốn gói trong một thanh 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, 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
tôi đang cố gắng thực hiện việc này trên tệp dockerfile bên dưới
# 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"]
hướng dẫn đã lỗi thời nên tôi không thể thực hiện thành công. Bạn có thể giúp tôi được không?
5
Bộ chứa docker không dựa trên Debian? Nếu nó không dựa trên Debian, quản lý gói apt sẽ không hoạt động.
—
Raman Sailopal
Tôi đã ở một vị trí rất ngớ ngẩn về cơ bản không liên quan đến câu hỏi hiện tại, nhưng có thể có thể cứu một nhân viên Google khác hạ cánh ở đây - tôi đã chạy
—
MichaelChirico
docker run ubuntu:latest
khi tôi định chạy docker run -it ubuntu:latest
. Tôi nghĩ rằng tôi đang chạy apt-get
bên trong container, nhưng nó thực sự đang ở trong Mac terminal. rất tiếc.