shashwatIDR commited on
Commit
74aa8ff
·
verified ·
1 Parent(s): 8272a87

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -11,10 +11,10 @@ COPY requirements.txt .
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Copy bot code
14
- COPY bot.py .
15
 
16
  # Expose the port for Flask
17
  EXPOSE 7860
18
 
19
  # Start the bot
20
- CMD ["python", "bot.py"]
 
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Copy bot code
14
+ COPY app.py .
15
 
16
  # Expose the port for Flask
17
  EXPOSE 7860
18
 
19
  # Start the bot
20
+ CMD ["python", "app.py"]