Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f01c486

Browse files
committedNov 20, 2024··
fix(container): install git in container
With the switch to Alpine in #4185, `--from-last-tag` no longer works. This is because git is no longer available in the container.
1 parent d33cbb7 commit f01c486

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎Dockerfile.ci

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ RUN yarn install --frozen-lockfile --network-timeout 100000 && \
2727

2828
FROM docker.io/library/node:18-alpine
2929
COPY --from=builder /src/*.tgz ./
30+
RUN apk add --no-cache git
3031
RUN npm config set fetch-retry-mintimeout 20000 && \
3132
npm config set fetch-retry-maxtimeout 120000 && \
3233
npm install --no-audit -g *.tgz && \

0 commit comments

Comments
 (0)
Please sign in to comment.