Instance
ID = 26b83868
Process = app
Version = 3
Region = sin
Desired = stop
Status = complete
Health Checks = 1 total, 1 critical
Restarts = 0
Created = 6m2s ago
Events
TIMESTAMP TYPE MESSAGE
2023-01-15T15:53:48Z Received Task received by client
2023-01-15T15:53:48Z Task Setup Building Task Directory
2023-01-15T15:55:26Z Started Task started by client
2023-01-15T15:58:48Z Alloc Unhealthy Task not running for min_healthy_time of 10s by deadline
2023-01-15T15:58:49Z Killing Sent interrupt. Waiting 5s before force killing
2023-01-15T15:59:12Z Terminated Exit Code: 0
2023-01-15T15:59:12Z Killed Task successfully killed
Checks
ID SERVICE STATE OUTPUT
230cd37130e7f9c96f951ed2ad499c8f tcp-8080 critical dial tcp 172.19.66.42:8080: connect: connection refused
This is my Docker file
FROM python:3.10
WORKDIR /bot
COPY requirements.txt /bot/
RUN pip install -r requirements.txt
COPY . /bot
CMD python bot.py
EXPOSE 443
EXPOSE 80
EXPOSE 8080
The bot is running fine but why do this error occurs when I deploy an update