Add misc photos blog post + switch back to NPM from PNPM (it was not playing nice with SQLite3 bindings -- I have run into this regression in several other projects)

This commit is contained in:
2025-04-17 10:11:35 -04:00
parent de8cbb7af1
commit 4ce7ea7127
6 changed files with 12650 additions and 2942 deletions

View File

@@ -9,9 +9,11 @@ COPY lib/ /app
RUN rm -f /app/.env
COPY package.json /app
COPY package-lock.json /app
COPY pnpm-lock.yaml /app
COPY pnpm-workspace.yaml /app
RUN cd /app && pnpm install
RUN cd /app && npm install --legacy-peer-deps
WORKDIR /app