Fix content and URL in README

This commit is contained in:
khalid@traclabs.com
2026-04-22 23:52:29 -05:00
parent 6aa4288821
commit 86476115df
4 changed files with 36 additions and 2 deletions

View File

@@ -15,13 +15,24 @@ RUN npm rebuild better-sqlite3
COPY shared ./shared
COPY server ./server
COPY site-context.json ./
# Copy content twice:
# /app/content — the live directory (will be overlaid by a volume mount)
# /app/content-seed — preserved in the image, used to seed empty volumes
COPY content ./content
COPY content ./content-seed
COPY config ./config
# Entrypoint seeds the volume on first deploy
COPY server/entrypoint.sh /app/entrypoint.sh
RUN chmod +x /app/entrypoint.sh
WORKDIR /app/server
ENV NODE_ENV=production
ENV REPO_ROOT=/app
EXPOSE 3001
ENTRYPOINT ["/app/entrypoint.sh"]
CMD ["npx", "tsx", "src/index.ts"]