我希望使用 Remote-Containers 功能测试新的远程开发扩展。我抓取了示例 Python项目并使用该Remote-Containers: Open Folder in Container...
函数将其打开。
初始化过程开始正常,逐步完成一些 Docker 构建没有问题。Dockerfile 中的步骤 1-3 成功,然后步骤 4( Dockerfile 的第13/14行)抛出异常并退出,因为该RUN
命令包含一个AND_IF
运算符 ( &&
)。这是因为它作为子命令传递给不支持&&
.
我已按照说明准备我的系统以使用远程容器功能,包括将我的驱动器(C: 和 D:)添加到共享驱动器。
到目前为止我尝试过的故障排除:
- 在 Linux 和 Windows 容器之间切换
- 在 PowerShell、Git Bash 和 WSL (Ubuntu) 之间交换作为 Visual Code 的默认 shell (
terminal.integrated.shell.windows
) - 使用 Microsoft 的其他远程容器示例之一
- 使用一个简单的 Python 文件创建一个非常基本的项目并
Remote-Containers: Open Folder in Container...
再次尝试,选择python:3
目标 Docker 映像
上述步骤都没有产生任何不同的结果。
Docker Inspect 显示Config
->Shell
设置为:
"Shell":
[
"powershell",
"-Command",
"$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"
]
而Config
->Cmd
设置是:
"Cmd":
[
"powershell",
"-Command",
"$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';",
"apt-get update && apt-get -y install --no-install-recommends apt-utils 2>&1"
]
完整的容器配置在这里。
异常的原因很明显,但我无法辨别为什么 DockerfileRUN
指令会像上面那样传递给 PowerShell。
我在 Windows 10 (1809) 上运行 Visual Studio Code - Insiders (1.36.0-insider) 和 Docker Engine 18.09.2。
当第 4 步失败时,异常会产生以下错误(我已将前面的成功步骤包含在上下文中;为简洁起见,在第 2 步中将 pip 安装展平):
Setting up container for folder: d:\Development\vscode-remote-try-python-master
Run: docker build -f d:\Development\vscode-remote-try-python-master\.devcontainer\Dockerfile -t vsc-vscode-remote-try-python-master-486294f4d73f25a657ec08f53ff07d5f d:\Development\vscode-remote-try-python-master
Sending build context to Docker daemon 24.06kB
Step 1/13 : FROM python:3
---> 22a423a5db36
Step 2/13 : RUN pip install pylint
---> Running in 23380af29dd1
Successfully installed astroid-2.2.5 colorama-0.4.1 isort-4.3.20 lazy-object-proxy-1.4.1 mccabe-0.6.1 pylint-2.3.1 six-1.12.0 typed-ast-1.4.0 wrapt-1.11.1
Removing intermediate container 23380af29dd1
---> 5569fa48c9c5
Step 3/13 : ENV DEBIAN_FRONTEND=noninteractive
---> Running in 941086f674cb
Removing intermediate container 941086f674cb
---> b8b2fd47bdb1
Step 4/13 : RUN apt-get update && apt-get -y install --no-install-recommends apt-utils 2>&1
---> Running in defcc073adcf
At line:1 char:91
+ ... ; $ProgressPreference = 'SilentlyContinue'; apt-get update && apt-get ...
+ ~~
The token '&&' is not a valid statement separator in this version.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordEx
ception
+ FullyQualifiedErrorId : InvalidEndOfLine
The command 'powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; apt-get update && apt-get -y install --no-install-recommends apt-utils 2>&1' returned a non-zero code: 1
Failed: Building an image from the Dockerfile.
Command failed: C:\Program Files\Docker\Docker\Resources\bin\docker.exe build -f d:\Development\vscode-remote-try-python-master\.devcontainer\Dockerfile -t vsc-vscode-remote-try-python-master-486294f4d73f25a657ec08f53ff07d5f d:\Development\vscode-remote-try-python-master
这是其他人的共同经历吗?将不胜感激任何解决方案或进一步排除故障的建议。