SidhaGarg commited on
Commit
87445f1
·
1 Parent(s): 222ebaa

Force /app/README.md to web docs for OpenEnv /web renderer

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -10,8 +10,8 @@ RUN pip install -r requirements.txt
10
 
11
  # Copy project files
12
  COPY pyproject.toml .
13
- COPY README.md .
14
- COPY WEB_README.md .
15
  COPY openenv.yaml .
16
  COPY models.py .
17
  COPY env.py .
 
10
 
11
  # Copy project files
12
  COPY pyproject.toml .
13
+ # OpenEnv /web reads /app/README.md first, so map web docs there explicitly.
14
+ COPY WEB_README.md ./README.md
15
  COPY openenv.yaml .
16
  COPY models.py .
17
  COPY env.py .