Spaces:
Paused
Paused
Update Dockerfile
Browse files- 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
|
| 20 |
# Expose any ports if needed (Telegram bot uses polling, no ports needed)
|
| 21 |
|
| 22 |
COPY --chown=user . /app
|
| 23 |
-
CMD ["python", "
|
|
|
|
| 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"]
|