Update Dockerfile
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
|
@@ -18,8 +18,10 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
| 18 |
COPY --chown=user . /app
|
| 19 |
|
| 20 |
# Open the relevant ports
|
| 21 |
-
EXPOSE 7860
|
| 22 |
-
#
|
|
|
|
| 23 |
|
| 24 |
# Run both Flask API and Telegram bot
|
| 25 |
-
CMD python3 app.py
|
|
|
|
|
|
| 18 |
COPY --chown=user . /app
|
| 19 |
|
| 20 |
# Open the relevant ports
|
| 21 |
+
EXPOSE 7860
|
| 22 |
+
# 8443
|
| 23 |
+
# 5000
|
| 24 |
|
| 25 |
# Run both Flask API and Telegram bot
|
| 26 |
+
CMD python3 app.py
|
| 27 |
+
#& python3 telegram_bot.py
|