mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2026-03-13 22:12:54 +03:00
fix(docker): add git and git-lfs to runner image (#198)
The runner stage was missing git, causing pre-sync backups to fail with "Executable not found in $PATH: git". The backup feature (enabled by default) shells out to git for clone --mirror and bundle create. Closes #196 Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -29,7 +29,8 @@ RUN bun install --production --omit=peer --frozen-lockfile
|
|||||||
FROM oven/bun:1.3.9-debian AS runner
|
FROM oven/bun:1.3.9-debian AS runner
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
wget sqlite3 openssl ca-certificates \
|
git git-lfs wget sqlite3 openssl ca-certificates \
|
||||||
|
&& git lfs install \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
COPY --from=pruner /app/node_modules ./node_modules
|
COPY --from=pruner /app/node_modules ./node_modules
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --from=builder /app/dist ./dist
|
||||||
|
|||||||
Reference in New Issue
Block a user