Add Docker Compose setup

This commit is contained in:
uzunerdev 2026-07-10 18:17:02 +03:00
commit 91e67968ca
17 changed files with 2683 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM node:22-alpine
WORKDIR /app
COPY . .
ENV NODE_ENV=production
ENV PORT=8011
EXPOSE 8011
CMD ["node", "serve.js"]