alles andere

This commit is contained in:
2026-02-04 09:58:52 +01:00
parent c7ec1fbae2
commit 79ec515b98
57 changed files with 11768 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
FROM node:20-alpine
WORKDIR /app
# Install pnpm
RUN npm install -g pnpm
# Copy package files
COPY package.json pnpm-lock.yaml* ./
# Install dependencies
RUN pnpm install --frozen-lockfile
# Copy source code
COPY . .
# Build Next.js app
RUN pnpm build
# Expose port
EXPOSE 3000
# Start Next.js
CMD ["pnpm", "start"]