加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

bash – /bin/sh:apt-get:找不到

发布时间:2020-12-15 19:03:58 所属栏目:安全 来源:网络整理
导读:我正在尝试更改dockerFile以使用aspell。我有一个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
我正在尝试更改dockerFile以使用aspell。我有一个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"]

教程已经过时,所以我无法成功。你可以帮我吗?

image you’re using是 Alpine based,所以你不能使用apt-get,因为它是Ubuntu的包管理器。

要解决这个问题,请使用:

apk更新和apk添加

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读