我在 Ubuntu 19.04 上使用 snap 安装了 docker,并确保我的用户可以访问 docker 组。我的 Dockerfile 如下:
FROM ubuntu:18.04
RUN apt-get update
我发出这个命令:
使用 docker build 命令来构建。
我得到了这个输出:
Sending build context to Docker daemon 3.584kB
Step 1/2 : FROM ubuntu:18.04
---> d131e0fa2585
Step 2/2 : RUN apt-get update
---> Running in 1e6a5d173b4c
OCI runtime create failed: container_linux.go:348: starting container process caused "process_linux.go:402: container init caused \"rootfs_linux.go:109: jailing process inside rootfs caused \\\"permission denied\\\"\"": unknown
谁知道这可能是什么原因造成的?