aspell과 함께 작동하도록 dockerFile을 변경하려고합니다. 도크에 감싸고 싶은 bash 스크립트가 있습니다.
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
나는 아래의 dockerfile에서 이것을하려고합니다.
# 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"]
튜토리얼이 오래되어서 성공할 수 없습니다. 도와주세요?
5
도커 컨테이너가 데비안 기반이 아닙니까? 데비안 기반이 아니면 적절한 패키지 관리가 작동하지 않습니다.
—
Raman Sailopal
나는 기본적으로 현재 질문과 관련이없는 매우 어리석은 위치에 있었지만 여기에 도착한 다른 Google 직원을 구할 수
—
MichaelChirico
docker run ubuntu:latest
있을 것 docker run -it ubuntu:latest
입니다. apt-get
컨테이너 내부에서 실행 중이라고 생각 했지만 실제로는 Mac 터미널에있었습니다. 웁스.