Fix Dockerfile: use JSON array syntax for filenames with spaces
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
02b65fc37a
commit
d32ef991b8
1 changed files with 3 additions and 3 deletions
|
|
@ -20,9 +20,9 @@ RUN playwright install chromium && playwright install-deps chromium
|
|||
# Copy all scripts
|
||||
COPY scripts/ /app/scripts/
|
||||
COPY docs/product-facts.md /app/docs/product-facts.md
|
||||
COPY "docs/MCS-150 Form.pdf" /app/docs/
|
||||
COPY "docs/MCS-150B Form.pdf" /app/docs/
|
||||
COPY "docs/MCS-150C Form.pdf" /app/docs/
|
||||
COPY ["docs/MCS-150 Form.pdf", "/app/docs/MCS-150 Form.pdf"]
|
||||
COPY ["docs/MCS-150B Form.pdf", "/app/docs/MCS-150B Form.pdf"]
|
||||
COPY ["docs/MCS-150C Form.pdf", "/app/docs/MCS-150C Form.pdf"]
|
||||
|
||||
# Create data directories
|
||||
RUN mkdir -p /app/data/screenshots /app/data/documents /app/data/logs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue