S-Vetrivel commited on
Commit
d399729
·
1 Parent(s): 35456ff

Fix Dockerfile: Copy all files to include src and config

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -18,8 +18,8 @@ WORKDIR /app
18
  COPY --chown=user requirements.txt .
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
- # Copy application code
22
- COPY --chown=user ./app ./app
23
 
24
  # Set port
25
  ENV PORT=7860
 
18
  COPY --chown=user requirements.txt .
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
+ # Copy all application code (src, config, app, etc.)
22
+ COPY --chown=user . .
23
 
24
  # Set port
25
  ENV PORT=7860