/ bin / sh: apt-get: ไม่พบ


118

ฉันกำลังพยายามเปลี่ยน DockerFile ให้ทำงานกับแอสเปลล์ ฉันมีสคริปต์ทุบตีที่ฉันต้องการห่อในท่าเรือ

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

ฉันกำลังพยายามทำใน 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
คอนเทนเนอร์นักเทียบท่าไม่ได้ใช้ Debian? หากไม่ได้ใช้ Debian การจัดการแพ็คเกจ apt จะไม่ทำงาน
Raman Sailopal

ผมอยู่ในตำแหน่งที่โง่มากโดยทั่วไปที่ไม่เกี่ยวข้องกับคำถามในปัจจุบัน แต่อาจจะสามารถบันทึก Googler อีกคนหนึ่งที่ที่ดินที่นี่ - ฉันได้ทำงานเมื่อฉันหมายถึงการวิ่งdocker run ubuntu:latest docker run -it ubuntu:latestฉันคิดว่าฉันกำลังวิ่งapt-getอยู่ในคอนเทนเนอร์ แต่จริงๆแล้วมันอยู่ในเทอร์มินัล Mac อ๊ะ
MichaelChirico

คำตอบ:


337

ภาพที่คุณกำลังใช้อยู่ในอัลไพน์ตามดังนั้นคุณจึงไม่สามารถใช้apt-getเพราะมันเป็นแพคเกจผู้จัดการของ Ubuntu

ในการแก้ไขปัญหานี้ให้ใช้:

apk update และ apk add


15
นี่เป็นการบั่นทอนเหตุผลในการใช้ Alpine เพื่อเริ่มต้นด้วยหรือไม่หรือยังคงให้ภาพ Alpine มีน้ำหนักเบาอยู่มากหรือไม่?
Steven

จะเปลี่ยนคำสั่งด้านล่างได้อย่างไร? hub.docker.com/r/buildkite/puppeteer/dockerfile
Udhaya

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.