我正在尝试构建Dockerfile:
# Dockerfile
FROM ubuntu
RUN apt-get update && \
apt-get install git
但是失败并显示错误
ERROR: Service 'client' failed to build: The command '/bin/sh -c apt-get update && apt-get install git' returned a non-zero code: 1
我做错了什么?
答案 0 :(得分:0)
对不起,我很傻。我只需要向-y
添加apt-get install
选项。
# Dockerfile
FROM ubuntu
RUN apt-get update && \
apt-get install -y git