gpt4 book ai didi

docker - 如何调试dist/不在Docker Cloud Build上生成?

转载 作者:行者123 更新时间:2023-12-02 19:33:51 25 4
gpt4 key购买 nike

我正在尝试自动化 dockercloud上构建,以为前端构建docker容器。
enter image description here

我有
web.docker文件

### STAGE 1: Build ###
FROM node:9.3.0-alpine as builder

COPY package.json ./

RUN npm set progress=false && npm config set depth 0 && npm cache clean --force

## Storing node modules on a separate layer will prevent unnecessary npm installs at each build
RUN npm i
RUN mkdir /web
RUN cp -R ./node_modules ./web

WORKDIR /web

COPY . .

## Build the angular app in production mode and store the artifacts in dist folder
RUN $(npm bin)/ng build --prod --build-optimizer

### STAGE 2: Setup ###

FROM nginx:1.13.8-alpine

COPY nginx.conf /etc/nginx/nginx.conf
COPY site.conf /etc/nginx/conf.d/default.conf
RUN rm -rf /usr/share/nginx/html/*

COPY dist /usr/share/nginx/html/

RUN touch /var/run/nginx.pid && \
chown -R nginx:nginx /var/run/nginx.pid && \
chown -R nginx:nginx /var/cache/nginx && \
chown -R nginx:nginx /usr/share/nginx/html

USER nginx
如您所见,我已经做了这行:

RUN $(npm bin)/ng build --prod --build-optimizer


它应该为我生成 dist/文件夹。

我有
这很长的时间登录我的docker-cloud
enter image description here
我不明白的是,当我在本地使用该Dockerfile时,它工作正常。
我应该查看我的webpack设置还是Dockerfile语法?

最佳答案

使用 --from COPY参数将源位置设置为上一个构建阶段。

COPY --from=builder /web/dist /usr/share/nginx/html/

对于本地构建,您可能有一个本地开发的 dist/文件夹,该文件夹随后包含在发送给Docker的构建上下文中。本地副本就是镜像中的最终副本。

关于docker - 如何调试dist/不在Docker Cloud Build上生成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48293821/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com