Add events

This commit is contained in:
2025-12-15 03:22:29 +07:00
parent 1a882fb2e0
commit 4239ea8516
31 changed files with 7288 additions and 75 deletions

View File

@@ -3,8 +3,8 @@ FROM node:20-alpine as build
WORKDIR /app
# Install dependencies
COPY package.json ./
RUN npm install
COPY package.json package-lock.json ./
RUN npm ci --network-timeout 300000
# Copy source
COPY . .