Aniket2006 commited on
Commit
f3a54eb
·
1 Parent(s): e2fa5a7

Fix: Copy all Python files in Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -6,10 +6,8 @@ WORKDIR /app
6
  COPY requirements.txt .
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
- # Copy application files
10
- COPY app.py .
11
- COPY supabase_client.py .
12
- COPY prompts.py .
13
 
14
  # Expose port
15
  EXPOSE 7860
 
6
  COPY requirements.txt .
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
+ # Copy all Python files
10
+ COPY *.py .
 
 
11
 
12
  # Expose port
13
  EXPOSE 7860