chore(deps): update node.js to v21.2.0
This commit is contained in:
parent
298ca24c9d
commit
8f19cb1a00
2 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ trivy:
|
||||||
|
|
||||||
release:
|
release:
|
||||||
stage: release
|
stage: release
|
||||||
image: node:21.1.0-alpine
|
image: node:21.2.0-alpine
|
||||||
before_script:
|
before_script:
|
||||||
- apk add --no-cache git
|
- apk add --no-cache git
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
FROM node:21.1.0-alpine AS build
|
FROM node:21.2.0-alpine AS build
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
RUN npm install
|
RUN npm install
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
FROM node:21.1.0-alpine
|
FROM node:21.2.0-alpine
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
RUN npm install --only=production
|
RUN npm install --only=production
|
||||||
|
|
Loading…
Reference in a new issue