Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
# Docker image with Python
|
2 |
-
FROM python:3.
|
3 |
|
4 |
# Set environment variables for python
|
5 |
ENV PYTHONUNBUFFERED=1
|
@@ -28,4 +28,4 @@ EXPOSE 7860
|
|
28 |
|
29 |
# Run the startup script to launch both FastAPI and Telegram Bot
|
30 |
# Use the start.sh script to launch the application (FAST API)
|
31 |
-
|
|
|
1 |
# Docker image with Python
|
2 |
+
FROM python:3.12
|
3 |
|
4 |
# Set environment variables for python
|
5 |
ENV PYTHONUNBUFFERED=1
|
|
|
28 |
|
29 |
# Run the startup script to launch both FastAPI and Telegram Bot
|
30 |
# Use the start.sh script to launch the application (FAST API)
|
31 |
+
CMD ["bash", "start.sh"]
|