summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authoryyamashita <yyamashita@mosquit.one>2026-05-09 00:38:42 +0900
committeryyamashita <yyamashita@mosquit.one>2026-05-09 00:38:42 +0900
commit446ffe83a2043636ffe99691454e843ef9fb179f (patch)
tree8a5e4437f815715461cfa84964f710a6943678a4 /Dockerfile
parentb8d24d292d99c8da285092ce923b5e2b546d8f45 (diff)
Fix Docker startup: add package.json to app stage, respect DB_PATH
npm start requires package.json in the working directory. Also wire up the DB_PATH env var so the DB is created inside the mounted volume. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 45c4813..a8e0833 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -20,6 +20,7 @@ RUN --mount=type=cache,target=/root/.npm \
FROM node:20-alpine AS app
WORKDIR /app
+COPY package.json ./
COPY --from=prod-deps /app/node_modules ./node_modules
COPY --from=build /app/build ./build
RUN mkdir -p /app/data