feat: docs.pivoine.art

This commit is contained in:
2025-10-09 19:11:53 +02:00
parent 301e03af58
commit d2fcde9302
28 changed files with 6160 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
# Development Dockerfile
FROM node:18-alpine
# Install pnpm
RUN npm install -g pnpm
WORKDIR /app
# Copy package files
COPY package.json pnpm-lock.yaml* ./
# Install dependencies
RUN pnpm install
# Copy source files
COPY . .
EXPOSE 3000
CMD ["pnpm", "dev"]