makhtar7186 commited on
Commit
cf7c8fb
·
verified ·
1 Parent(s): 0038fea

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -16,8 +16,8 @@ COPY --chown=user ./requirements2.txt requirements2.txt
16
  RUN pip install --no-cache-dir -r requirements2.txt
17
 
18
 
19
- COPY telegram_bot.py .
20
  # Expose any ports if needed (Telegram bot uses polling, no ports needed)
21
 
22
  COPY --chown=user . /app
23
- CMD ["python", "telegram_bot.py"]
 
16
  RUN pip install --no-cache-dir -r requirements2.txt
17
 
18
 
19
+ COPY app.py .
20
  # Expose any ports if needed (Telegram bot uses polling, no ports needed)
21
 
22
  COPY --chown=user . /app
23
+ CMD ["python", "app.py"]