Версия 0.5.4 Исправлен путь копирования собранного образа frontend.

This commit is contained in:
anibilag 2025-07-16 23:26:03 +03:00
parent f71adae2f1
commit b7a81dbce5
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ RUN npm ci --only=production && npm cache clean --force
COPY server/ ./server/
# Copy built frontend files
COPY --from=frontend-build /app/dist ./public
COPY --from=frontend-build /app/frontend/dist ./public
# Create uploads directory
RUN mkdir -p uploads

View File

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