Prevent `dist` folders from static apps from being ignored
还没有人认领这个 Issue。
评估
- 难度
- 2/5
- 预计耗时
- 1-3 小时
- 新手友好度
- 45/100
- Issue 类型
- 缺陷
- 描述清晰度
- 基本清楚
- 活跃度
- 停滞
- 技术栈
- docker, javascript
- 领域
- devops
调研方向
首先检查 issue 中所示的生成 .dockerignore 和 Dockerfile 流程,尤其是 COPY 静态应用的 dist 输出这一部分。确认静态构建的处理方式,然后确保生成的忽略规则保留所需的 dist 文件夹,使其可用于最终复制到镜像中;通过部署静态应用或运行仓库现有的检查来验证。
由索引模型根据 Issue 内容生成。
描述
A friend had a dockerfile like this:
# syntax = docker/dockerfile:1
# Adjust NODE_VERSION as desired
ARG NODE_VERSION=18.7.0
FROM node:${NODE_VERSION}-slim as base
LABEL fly_launch_runtime="NodeJS"
# NodeJS app lives here
WORKDIR /app
# Set production environment
ENV NODE_ENV=production
ENV VITE_API_BASE_URL="https://japu-backoffice-dev.fly.dev/api/v1"
ARG YARN_VERSION=1.22.19
RUN npm install -g yarn@$YARN_VERSION --force
RUN npm install -g @quasar/cli
# Throw-away build stage to reduce size of final image
FROM base as build
# Install packages needed to build node modules
RUN apt-get update -qq && \
apt-get install -y python-is-python3 pkg-config build-essential
# Install node modules
COPY --link package.json yarn.lock ./
COPY . .
RUN yarn install --production=false
RUN npx quasar build
FROM pierrezemb/gostatic
# Copy built application
COPY --from=build /app/dist/spa /srv/http
And they tried to deploy and got an issue like:
=> ERROR [2/2] COPY ./dist/spa/ /srv/http/ 0.0s
------
[2/2] COPY ./dist/spa/ /srv/http/:
------
Because during launch they got asked to create a .dockerignore and accepted it. Probably it contained a line to ignore dist.
- 主要语言
- JavaScript
- 星标
- 187
- 派生
- 12
- PR 合并指标
- 30 天内没有已合并 PR
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
fly-apps/dockerfile-node 的其他 Issue
-
fly launch for Shopify apps fails: `shopify app deploy --force` — --force removed in Shopify CLI 4.x 未关闭
难度 1/5 1 小时以内 新手友好度 84/100
fly-apps/dockerfile-node#151 · 1 条评论 ·
-
难度 2/5 1-3 小时 新手友好度 55/100
fly-apps/dockerfile-node#145 · 2 个 reaction ·
-
难度 2/5 1-3 小时 新手友好度 45/100
fly-apps/dockerfile-node#144 ·
-
难度 4/5 3-5 天 新手友好度 25/100
fly-apps/dockerfile-node#143 ·
-
难度 4/5 3-5 天 新手友好度 42/100
fly-apps/dockerfile-node#60 · 1 条评论 · 1 个 reaction ·
查看 fly-apps/dockerfile-node 的全部 Issue
相似的 Issue
-
难度 2/5 1-3 小时 新手友好度 82/100
-
area-deployment area-integrations triage:bot-seen
难度 2/5 半天 新手友好度 86/100
-
Issue-Bug
难度 2/5 1-3 小时 新手友好度 68/100
sugarlabs/musicblocks#8924 ·
-
难度 1/5 1 小时以内 新手友好度 90/100
ArduPilot/ardupilot_wiki#8088 ·
-
[BUG] createTool tools cannot be registered with Mastra when exactOptionalPropertyTypes is enabled 未关闭customer-eng status: needs triage
难度 2/5 1-3 小时 新手友好度 84/100