Skip to content
This repository was archived by the owner on Aug 25, 2026. It is now read-only.

Commit cb25a71

Browse files
ci: dockerfile use full node image for build
1 parent 10563cd commit cb25a71

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,13 @@ RUN apk add gcc musl-dev \
1212
#
1313
# Build app
1414
#
15-
FROM node:lts-alpine as base
15+
FROM node as base
1616

1717
WORKDIR /app
1818

19-
# Install python
20-
# RUN apk add --update --no-cache make python3
21-
2219
# Install dependencies
2320
COPY package*.json ./
24-
RUN npm ci --production
21+
RUN npm ci
2522

2623
# Build application
2724
COPY . .

0 commit comments

Comments
 (0)