gpt4 book ai didi

docker/垃圾桶/sh : 1: : not found miniconda3

转载 作者:太空宇宙 更新时间:2023-11-03 17:20:37 25 4
gpt4 key购买 nike

当我尝试使用命令行构建以下 Dockerfile 时 docker build -t my-image-name .

FROM continuumio/miniconda3
EXPOSE 8880

# Set working directory
WORKDIR /my-workingdir

# Add scripts to docker workdir
ADD Dockerfile .
ADD environment.yml .
ADD all-my-python-files.py .

# Update & installation of linux packages
RUN apt-get update -y && \
    apt-get install -y libgl1-mesa-glx apt-utils && \
apt-get install -y openssh-server && \
apt-get install -y net-tools
# Conda update and creation of environment
RUN conda update conda \
&& conda env create -f environment.yml \
# Activation of environment
&& echo "source activate environment" > ~/.bashrc

# Mount volumes
VOLUME /my-workingdir/Input

CMD ["python" , "execute_given_python_file.py"]

构建时出现错误:/bin/sh: 1: : not found我正在 macOS Hihg Sierra 版本 10.13.6 中构建图像,但是当我在 linux CentOS 环境(在另一个 Docker 容器内)中构建图像时,Dockerfile 运行完美。我在mac上使用的Docker版本是

  • 客户:
    • 版本:18.06.1-ce
    • API 版本:1.38
  • 服务器:
    • 引擎:
    • 版本:18.06.1-ce
    • API 版本:1.38(最低版本 1.12)

我尝试了以下方法:

  1. 在 mac 上重新安装 Docker
  2. apt-get 更新(不带 -y)
  3. sudo apt-get 更新
  4. 不更新
  5. 不要创建 conda 环境
  6. 不要命令

但我仍然遇到错误。如何解决这个问题?

更新:在构建图像期间出现错误消息之前的最后几行是:

获取:6 个 http://security.debian.org/debian-security stretch/updates/main amd64 包 [490 kB]获取:7 http://deb.debian.org/debian stretch-updates/main amd64 包 [5476 B]获取:8 个 http://deb.debian.org/debian stretch/main amd64 包 [9500 kB]在 2 秒内获取 10.3 MB (4564 kB/s)阅读包裹 list .../bin/sh: 1: : 未找到

Docker 返回一个非零代码:127

为了重现错误,我包含了一个 python 脚本和一个 yml 环境。

错误期间测试的 Python 脚本 all-my-python-files.py:

# Name of file: all-my-python-files.py
import openpyxl
import requests
import datetime as dt
import time
from pandas.io.json import json_normalize
import argparse
import os
import pandas as pd
print("At this point, libraries should be imported")
print("End of python script")

environment.yml 文件是:

name: environment
channels:
- statiskit
- anaconda
- conda-forge
- defaults
dependencies:
- asn1crypto=0.24.0
# For space the following line are not separated into single lines:

- cffi=1.11.5 - chardet=3.0.4 - 密码学=2.3.1 - et_xmlfile=1.0.1 - idna=2.7 -jdcal=1.4 -openpyxl=2.5.5 -pycparser=2.18 - pyopenssl=18.0.0 - pysocks=1.6.8 - 请求=2.19.1 - urllib3=1.23 - ca-证书=2018.8.24 -openssl=1.0.2p - 时间=1.7 - blas=1.0 - 证书=2018.8.24 - 英特尔-openmp=2018.0.3 - libedit=3.1.20170329 -libffi=3.2.1 # - libgfortran=3.0.1 # 不在 linux 中运行 - mkl=2018.0.3 - mkl_fft=1.0.4 - mkl_random=1.0.1 - ncurses=6.1 - NumPy =1.15.1 -numpy-base=1.15.1 - Pandas =0.23.4 - 点=10.0.1 - python =3.7.0 - python-dateutil=2.7.3 - pytz=2018.5 - 阅读线=7.0 - 安装工具=40.2.0 - 六=1.11.0 -sqlite=3.24.0 -tk=8.6.8 - 车轮=0.31.1 - xz=5.2.4 - zlib=1.2.11 # - libcxx=4.0.1 # 不在 linux 中运行 # - libcxxabi=4.0.1 # 不在 linux 中运行 - 点: - 日期时间==4.2 - zope.interface==4.5.0前缀:/Users/Elias/miniconda3/envs/xlshp

最佳答案

正如@Charler Duffy 提到的,这个问题与脚本中不可见的行尾有关。不知何故,按以下方式编写代码解决了问题:

RUN apt-get update
RUN apt-get install -y libgl1-mesa-glx apt-utils openssh-server net-tools
# Conda update and creation of environment
RUN conda update conda && \
    conda env create -f environment.yml && \
    # Activation of environment and correction of bash
    echo "source activate xlshp_env" > ~/.bash

所以当所有的 linux 包都安装在同一行时,Dockerfile 就可以构建镜像了。

关于 docker/垃圾桶/sh : 1: : not found miniconda3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52192792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com