thibaud frere commited on
Commit
fc17cea
·
1 Parent(s): 52307d3

update dockerfile

Browse files
Files changed (2) hide show
  1. CLAUDE.md +0 -3
  2. Dockerfile +2 -3
CLAUDE.md DELETED
@@ -1,3 +0,0 @@
1
- # Project Working Notes (CLAUDE)
2
-
3
- This document summarizes recent implementation details and conventions. Written in English per your preference for written content and code comments.
 
 
 
 
Dockerfile CHANGED
@@ -14,9 +14,8 @@ RUN npm install
14
  # Copy the rest of the application code
15
  COPY app/ .
16
 
17
- # Ensure public/data exists inside the container (symlinks won't resolve at build time)
18
- RUN mkdir -p public/data && \
19
- cp -a src/content/assets/data/. public/data/
20
 
21
  # Build the application
22
  RUN npm run build
 
14
  # Copy the rest of the application code
15
  COPY app/ .
16
 
17
+ # Note: assets in `src/content/assets/data` are already duplicated under `public/data` in the repo,
18
+ # so no extra copy step is required here.
 
19
 
20
  # Build the application
21
  RUN npm run build