restore composer.json, add mysqli extension

This commit is contained in:
2026-04-15 16:32:47 +05:00
parent acb79b2db7
commit 4d7c36cd33
6 changed files with 145 additions and 0 deletions

12
Dockerfile.dev Normal file
View File

@@ -0,0 +1,12 @@
FROM node:22-alpine
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
RUN pnpm install
EXPOSE 3000
CMD ["pnpm", "dev"]