Pin Docker images in CI

This commit is contained in:
2024-08-21 19:33:50 +02:00
parent f728f1f72b
commit 61a6115071
4 changed files with 13 additions and 13 deletions

View File

@ -2,14 +2,14 @@
#
# SPDX-License-Identifier: AGPL-3.0-or-later
FROM node:20-alpine as builder
FROM node:20.12.2-alpine as builder
COPY . ./
RUN npm ci && npm run build
FROM nginx as ki-frontend
FROM nginx:1.24-alpine as ki-frontend
COPY --from=builder /dist/ /usr/share/nginx/html/
COPY etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf