【DockerFile】解密失败的解决方案:揭秘Process “/bin/sh -c yum install openssl“的报错
【DockerFile】解密失败的解决方案:揭秘Process "/bin/sh -c yum install openssl"的报错
大家好 我是寸铁👊
【Centos7】【DockerFile】解密失败的解决方案:揭秘Process "/bin/sh -c yum install openssl"的报错✨
喜欢的小伙伴可以点点关注 💝
前言
今天笔者在编写
dockerfile
的时候,报错了,咋一看编写的指令是没问题的,那是哪里出现了问题呢?下面跟着笔者来看看怎么解决这个问题吧!
报错如下:
ERROR [2/9] RUN yum install openssl 20.6s
[2/9] RUN yum install openssl:
20.31 ================================================================================
20.31 Package Arch Version Repository Size
20.31 ================================================================================
20.31 Installing:
20.31 openssl x8664 1:1.0.2k-26.el79 updates 494 k
20.31 Installing for dependencies:
20.31 make x8664 1:3.82-24.el7 base 421 k
20.31 Updating for dependencies:
20.31 openssl-libs x8664 1:1.0.2k-26.el79 updates 1.2 M
20.31
20.31 Transaction Summary
20.31 ================================================================================
20.31 Install 1 Package (+1 Dependent package)
20.31 Upgrade ( 1 Dependent package)
20.31
20.31 Total download size: 2.1 M
20.31 Is this ok [y/d/N]: Exiting on user command
20.31 Your transaction was saved, rerun it with:
20.31 yum load-transaction /tmp/yumsavetx.2024-06-01.12-26.2FgboK.yumtx
Dockerfile:5
3 |
4 | # 安装openssl
5 | >>> RUN yum install openssl
6 |
7 | # 安装必要的依赖
ERROR: failed to solve: process "/bin/sh -c yum install openssl" did not complete successfully: exit code: 1
解决方案
根据提供的错误信息,安装 OpenSSL
时出现了交互式提示,询问是否要继续安装。
Dockerfile
中的yum install openssl
命令需要在非交互
模式下运行,以避免等待用户输入。
通过在运行 yum install openssl
命令时添加 -y
标志来实现非交互式安装。
修改 Dockerfile 中的相应行如下:
RUN yum install -y openssl
这样,安装 OpenSSL
将自动确认,并且不会等待用户输入。
重新构建你的Docker
镜像,应该就不会再出现这个错误了。
总结
一般,在
dockerfile
中用yum
安装都会加上-y
用于实现非交互式安装。这其实也是dockerfile
和正常的交互式shell
安装的不同之处。所以,大家在编写dockerfile
使用yum
安装时要注意加上-y
来进行默认确定,确保安装正常。
看到这里的小伙伴,恭喜你又掌握了一个技能👊
希望大家能取得胜利,坚持就是胜利💪
我是寸铁!我们下期再见💕
往期好文💕
保姆级教程
【保姆级教程】Windows11下go-zero的etcd安装与初步使用
【保姆级教程】Windows11安装go-zero代码生成工具goctl、protoc、go-zero
【Go-Zero】手把手带你在goland中创建api文件并设置高亮
报错解决
【Go-Zero】Error: user.api 27:9 syntax error: expected ‘:‘ | ‘IDENT‘ | ‘INT‘, got ‘(‘ 报错解决方案及api路由注意事项
【Go-Zero】Error: only one service expected goctl一键转换生成rpc服务错误解决方案
【Go-Zero】【error】 failed to initialize database, got error Error 1045 (28000):报错解决方案
【Go-Zero】Error 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)报错解决方案
【Go-Zero】type mismatch for field “Auth.AccessSecret“, expect “string“, actual “number“报错解决方案
【Go-Zero】Error: user.api 30:2 syntax error: expected ‘)‘ | ‘KEY‘, got ‘IDENT‘报错解决方案
【Go-Zero】Windows启动rpc服务报错panic:context deadline exceeded解决方案
Go面试向
更多推荐
所有评论(0)