Fix: production builds break Icon component when SVGs are loaded as inline code. Adjusted vite.config.js. Updated the Node.js version in Dockerfile

This commit is contained in:
2024-08-17 20:45:19 +03:00
parent 0550f9e6dd
commit 03706b785a
2 changed files with 8 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
FROM node:22.5.1-alpine AS builder
FROM node:22.6.0-alpine AS builder
WORKDIR /app
@@ -11,7 +11,7 @@ COPY . .
RUN npm run build --env-file=production.env
RUN npm prune --omit=dev
FROM node:22.5.1-alpine AS deployer
FROM node:22.6.0-alpine AS deployer
WORKDIR /app