first commit
Some checks failed
Deploy Application / deploy (push) Failing after 43s

This commit is contained in:
2025-06-11 21:59:45 +04:00
parent 4ab1fed81c
commit f150cd1ba4

View File

@ -4,7 +4,7 @@ FROM node:20-alpine as build
WORKDIR /app
# Copy package files
COPY package.json yarn.lock ./
COPY package.json package-lock.json ./
# Install dependencies
RUN npm install