bump libs and update Dockerfile

This commit is contained in:
2026-01-28 17:04:46 +03:00
parent 2f8f253eb1
commit cbb1fc3d63
4 changed files with 269 additions and 205 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# ---- build ----
FROM node:20-alpine AS builder
FROM node:lts-trixie-slim AS builder
WORKDIR /app
COPY package.json package-lock.json tsconfig*.json ./
@@ -11,7 +11,7 @@ COPY assets ./assets
RUN npx tsc -p tsconfig.build.json
# ---- runtime ----
FROM node:20-alpine AS runner
FROM node:lts-trixie-slim AS runner
WORKDIR /app
ENV NODE_ENV=production