Версия 0.5.2 Исправление для сборки образа в проде.

This commit is contained in:
anibilag 2025-07-16 23:12:25 +03:00
parent e2a9da64be
commit 577a88300f
3 changed files with 2 additions and 4 deletions

View File

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

View File

@ -1,5 +1,3 @@
version: '3.8'
services:
app:
build:

View File

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