This commit is contained in:
2026-04-18 14:56:24 +03:00
parent 6c871cd9eb
commit 0e7c60db6f
6 changed files with 193 additions and 8 deletions

View File

@@ -2,11 +2,10 @@ FROM node:22-alpine AS builder
WORKDIR /app
ARG VITE_API_BASE_URL=http://localhost:8080/api/
ENV VITE_API_BASE_URL=${VITE_API_BASE_URL}
COPY package.json package-lock.json ./
RUN npm ci
RUN npm i
COPY . .
RUN npm run build