Merge pull request 'Pin Node.js' (#12) from renovate/digests-pin into master

Reviewed-on: #12
This commit is contained in:
bizcochito 2025-01-03 08:28:05 +00:00
commit 93de17f478
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM node:23-alpine AS builder
FROM node:23.5.0-alpine AS builder
WORKDIR /app
RUN npm install -g typescript
COPY package*.json ./
@ -6,7 +6,7 @@ RUN npm install
COPY . .
RUN npm run build
FROM node:23-alpine AS server
FROM node:23.5.0-alpine AS server
WORKDIR /app
COPY package* ./
RUN npm install --production