jameszokah commited on
Commit
d18dc62
·
1 Parent(s): 3099734

Fix Dockerfile: correct path in debug statements to accurately reflect the directory structure of model files, enhancing clarity during the build process.

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -34,7 +34,7 @@ COPY . .
34
  # Debug: Show destination directory structure
35
  RUN echo "Contents of /app:" && ls -la /app && \
36
  echo "\nContents of /app/app:" && ls -la /app/app && \
37
- echo "\nContents of /app/app/models:" && ls -la /app/app/models
38
 
39
  # Set up permissions
40
  RUN chmod +x /app/scripts/run.sh && \
 
34
  # Debug: Show destination directory structure
35
  RUN echo "Contents of /app:" && ls -la /app && \
36
  echo "\nContents of /app/app:" && ls -la /app/app && \
37
+ echo "\nContents of /app/app/models:" && ls -la app/app/models
38
 
39
  # Set up permissions
40
  RUN chmod +x /app/scripts/run.sh && \