Версия 0.5.3 Не там исправил в предыдущей версии комита.

This commit is contained in:
anibilag 2025-07-16 23:20:54 +03:00
parent 577a88300f
commit f71adae2f1
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ FROM node:18-alpine AS frontend-build
WORKDIR /app/frontend
COPY package*.json ./
RUN npm ci --only=production
RUN npm ci
COPY . .
RUN npm run build
@ -13,7 +13,7 @@ FROM node:18-alpine AS backend-build
WORKDIR /app/backend
COPY package*.json ./
RUN npm ci
RUN npm ci --only=production
COPY server/ ./server/
COPY package.json ./

View File

@ -1,7 +1,7 @@
{
"name": "lawn-mowing-scheduler",
"private": true,
"version": "0.5.2",
"version": "0.5.3",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",