Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .data/content/contents.sqlite
Binary file not shown.
5 changes: 5 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
auto-install-peers=true
strict-peer-dependencies=false
public-hoist-pattern[]=*eslint*
public-hoist-pattern[]=*prettier*
public-hoist-pattern[]=@nuxt/*
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22.21.1
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# base
ARG NODE_VERSION=18.20.4
ARG NODE_VERSION=22.21.1
FROM node:${NODE_VERSION}-slim AS base

#build
FROM base AS build
WORKDIR /app

COPY package.json ./
RUN npm install
# Use pnpm via corepack for faster, reliable installs
RUN corepack enable && corepack use pnpm@10.21.0 && pnpm install --no-frozen-lockfile
COPY . .

RUN npm run generate-website
RUN pnpm run generate-website
# Add verification
RUN ls -la .output/public || exit 1

Expand Down
Loading
Loading