我有一个Bitbucket Pipelines,看起来像这样:
图片: python:3.5.1
pipelines:
branches:
master:
- step:
script:
- apt-get update
- apt-get install lsb-release -y
- curl --silent https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
- VERSION=node_5.x
- DISTRO="$(lsb-release -s -c)"
- echo "deb https://deb.nodesource.com/$VERSION $DISTRO main" | tee /etc/apt/sources.list.d/nodesource.list
- echo "deb-src https://deb.nodesource.com/$VERSION $DISTRO main" | tee -a /etc/apt/sources.list.d/nodesource.list
- apt-get update
- apt-get install nodejs -y
- npm install
- npm run build
- python get-pip.py
- pip install boto3==1.3.0
- python s3_upload.py io-master.fromthiscomesthat.co.uk dist io-master除了DISTRO="$(lsb-release -s -c)"失败之外,其他的都运行得很好。找不到lsb-release可执行文件,即使它已成功安装在脚本中。我已经尝试过find / -name lsb-release,但这只能产生以下结果:
+ find / -name lsb-release
/usr/share/doc/lsb-release
/usr/share/bug/lsb-release ...which不是很有用。
可执行文件在哪里??
发布于 2016-10-27 12:43:51
lsb-release是包的名称,lsb_release是其中的二进制名称。
我是怎么发现的:
lsb-release中的apt-get update && apt-get install -y lsb-release**/bin目录中的文件为docker)在其中测试docker run -it --rm python:3.5.1 /bin/bashdpkg -L lsb-releasehttps://stackoverflow.com/questions/40274212
复制相似问题