chore: stuff

This commit is contained in:
2025-02-06 01:42:24 +06:00
parent 5f99ba28c4
commit 6b150fe4c4
4 changed files with 61 additions and 29 deletions

10
Dockerfile Normal file
View File

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