Hacktoberfest 2026:维护者为十月标记出来的 issue,仍然开放、适合新手。 浏览 Hacktoberfest issue

Prevent `dist` folders from static apps from being ignored

未关闭
#91 1 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 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

贡献指南

这个仓库没有索引到贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

fly-apps/dockerfile-node 的其他 Issue

查看 fly-apps/dockerfile-node 的全部 Issue

相似的 Issue

更多 JavaScript Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。