Penguindrum920 commited on
Commit
c5eee70
·
1 Parent(s): 7434fda

Fix Docker COPY syntax for About Me path

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -10,7 +10,7 @@ RUN pip install --no-cache-dir -r /app/backend/requirements.txt
10
 
11
  COPY backend /app/backend
12
  COPY data /app/data
13
- COPY "About Me" "/app/About Me"
14
 
15
  EXPOSE 7860
16
 
 
10
 
11
  COPY backend /app/backend
12
  COPY data /app/data
13
+ COPY ["About Me", "/app/About Me"]
14
 
15
  EXPOSE 7860
16