updated container versions

This commit is contained in:
2026-03-25 11:10:18 +01:00
parent 07c4c04eb7
commit 86e8798c69
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
FROM rust:1.75-slim as builder
FROM rust:latest as builder
WORKDIR /usr/src/app
COPY . .

View File

@@ -1,4 +1,4 @@
FROM node:20-slim AS builder
FROM node:latest AS builder
WORKDIR /app
COPY package*.json ./
@@ -7,7 +7,7 @@ RUN npm install
COPY . .
RUN npm run build
FROM node:20-slim
FROM node:latest
WORKDIR /app
COPY --from=builder /app/dist ./dist