chore: dasdsad

This commit is contained in:
2025-02-06 02:09:29 +06:00
parent 6b150fe4c4
commit f297c5b18f
21 changed files with 1588 additions and 645 deletions

View File

@@ -1,10 +1,10 @@
FROM node:alpine-22
FROM node:22-alpine
RUN apk add --no-cache git
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit-dev
RUN yarn install
COPY . .
RUN npm run build
RUN yarn build
EXPOSE 3000
CMD ["node", "--watch", "server.js"]
CMD ["node", "--watch", "server.js"]