使用在Ubuntu容器上运行的docker无法执行cd?

时间:2019-08-19 09:47:56

标签: docker dockerfile docker-run docker-multi-stage-build

当我尝试将需求的软件包安装到目录'/ home / site / wwwroot'时,出现以下错误

/bin/sh: 1: cd: can't cd to /home/site/wwwroot
The command '/bin/sh -c cd /home/site/wwwroot &&     pip install -r requirements.txt' returned a non-zero code: 2

这是我的dockerfile

FROM mcr.microsoft.com/azure-functions/python:2.0

ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
    AzureFunctionsJobHost__Logging__Console__IsEnabled=true

COPY . /home/site/wwwroot



FROM ubuntu
# ...
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
    apt-get -y install gcc mono-mcs && \
    rm -rf /var/lib/apt/lists/*

RUN cd /home/site/wwwroot && pip install -r requirements.txt

我的要求是.txt

    azure-functions
pyodbc
pandas
numpy
azure-eventhub

如何解决? 预先感谢

1 个答案:

答案 0 :(得分:0)

在最后一个阶段,不存在位置/home/site/wwwroot

您必须从之前的阶段复制此文件夹

 COPY --from=previus_stage /home/site/wwwroot /home/site/wwwroot

另一件事,您的env变量应如下所示。

ENV AzureWebJobsScriptRoot=/home/site/wwwroot
ENV AzureFunctionsJobHost__Logging__Console__IsEnabled=true