Merge branch 'fix-pipeline' into 'dev'

Fix pipeline

See merge request rheinsw/website!22
This commit is contained in:
2025-04-04 21:27:57 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
image: node:20@sha256:735b1ba7e4550c415f98568efbf527e3f75828ac4f10692e490ca78e11d89f6e image: node:22@sha256:f6b9c31ace05502dd98ef777aaa20464362435dcc5e312b0e213121dcf7d8b95
workflow: workflow:
rules: rules:

View File

@@ -1,5 +1,5 @@
# Use lightweight Node.js 20 base image # Use lightweight Node.js 20 base image
FROM node:20-alpine as builder FROM node:20-alpine@sha256:9bef0ef1e268f60627da9ba7d7605e8831d5b56ad07487d24d1aa386336d1944 as builder
# Set working directory # Set working directory
WORKDIR /app WORKDIR /app
@@ -17,7 +17,7 @@ COPY . .
RUN npm run build RUN npm run build
# Use a minimal base image for running the app # Use a minimal base image for running the app
FROM node:20-alpine FROM node:20-alpine@sha256:9bef0ef1e268f60627da9ba7d7605e8831d5b56ad07487d24d1aa386336d1944
WORKDIR /app WORKDIR /app