通过minikube构建Docker多阶段映像时出错:找不到文件

时间:2020-01-16 14:20:13

标签: docker dockerfile minikube

我有一个我为Angular应用编写的Dockerfile:

#### Stage 1: Build the angular application
FROM node:12.4.0-alpine as build

# Configure the main working directory inside the docker image.
# This is the base directory used in any further RUN, COPY, and ENTRYPOINT
# commands.
WORKDIR /app

# Copy the package.json as well as the package-lock.json and install
# the dependencies. This is a separate step so the dependencies
# will be cached unless changes to one of those two files
# are made.
COPY package.json package-lock.json ./
RUN npm ci
RUN npm install -g @angular/cli

# Copy the main application
COPY . ./

# Build the application
RUN npm run build:prod

#### Stage 2: Serve the Angular application from Nginx
FROM nginx:1.17.0-alpine

RUN rm -rf /usr/share/nginx/html/*

# Copy the angular build from Stage 1
COPY --from=build /app/dist/MyAngularApp /usr/share/nginx/html

# Copy our custom nginx config
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
COPY nginx/status.conf /etc/nginx/conf.d/status.conf

# Expose port 80 to the Docker host, so we can access it
# from the outside.
EXPOSE 80
# Expose port 8081 to the Docker host, for nginx status pages
EXPOSE 8081

ENTRYPOINT ["nginx","-g","daemon off;"]

我可以使用docker build -t my-angular-app:v1 .

在我的机器上很好地构建此映像

但是,如果我首先eval $(minikube docker-env)使用minikube的docker守护进程而不是我的本地守护程序并执行相同的命令:docker build -t my-angular-app:v1 .(按照README的说明)

我收到以下错误(没有这样的文件或目录):

Step 10/15 : COPY --from=build /app/dist/MyAngularApp /usr/share/nginx/html
COPY failed: stat /var/lib/docker/overlay2/2972c4790d70a2e0c98895855e5bde894a97ebab8c5a8b2efab5100c3f8c6fbb/merged/app/dist/MyAngularApp: no such file or directory

实际上,VM中没有文件夹/ var / lib / docker / overlay2 / 2972​​c4...。

我想念什么?

我正在将minikube v1.6.2与virtualbox v5.2.34一起使用

本地docker v19.03.5

minikube的docker也是v19.03.5

FIY minikube docker-env设置以下环境变量:

export DOCKER_TLS_VERIFY="1"
export DOCKER_HOST="tcp://192.168.99.100:2376"
export DOCKER_CERT_PATH="/home/myUser/.minikube/certs"

2 个答案:

答案 0 :(得分:2)

好的,我发现了问题:这与我的Dockerfile或minikube中丢失的文件无关。

TLDR结束。

所以问题在于Docker找不到在第一阶段创建的/ app / dist / MyAngularApp文件夹。

该文件夹应该由命令npm run build:prod创建。

使用我的机器构建时,它可以工作。通过minikube构建时,不会创建文件夹。没有错误或警告。该命令运行...什么也没有。

有人建议使用Yarn代替Npm,以查看它是否显示某种错误或警告。宾果游戏!

yarn run build:prod显示:error Command failed with signal "SIGKILL".

哈哈!该构建会占用过多资源并被杀死。

我通过:up在minikube上增加了内存

minikube delete;
minikube start --memory 4096

现在工作正常!

即使使用--verbose,我也不知道为什么Yarn会显示错误,而Npm不会显示错误。

TLDR; :minikube上的内存不足导致它SIGKILL我的npm build。没有生成,没有生成的文件夹,因此出现COPY错误。使用npm时未显示任何错误。切换到Yarn并显示SIGKILL错误。

答案 1 :(得分:0)

如注释中所述,这是由在运行minikube的VM主机上找不到构建映像所需的文件引起的。

要将文件发送到minikube VM,可以使用命令minikube ssh,然后使用scp或任何其他bash命令将文件复制到需要的位置。