We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65b219e commit 865ca43Copy full SHA for 865ca43
Dockerfile.ci
@@ -1,6 +1,7 @@
1
-FROM docker.io/library/node:18-buster AS builder
+FROM docker.io/library/node:18-alpine AS builder
2
WORKDIR /src
3
COPY . ./
4
+RUN apk add --no-cache python3 py3-setuptools make g++
5
RUN yarn install --frozen-lockfile --network-timeout 100000 && \
6
yarn run build && \
7
# Commit lint CLI packages
@@ -24,7 +25,7 @@ RUN yarn install --frozen-lockfile --network-timeout 100000 && \
24
25
# Default commitlint config
26
npm pack @commitlint/config-conventional
27
-FROM docker.io/library/node:18-buster
28
+FROM docker.io/library/node:18-alpine
29
COPY --from=builder /src/*.tgz ./
30
RUN npm config set fetch-retry-mintimeout 20000 && \
31
npm config set fetch-retry-maxtimeout 120000 && \
0 commit comments