Hey I am using the free plan and trying to deploy a telegram bot app following this tutorial:
Provided a corresponding Dockerfile:
FROM python:3.9
RUN apt-get update && apt-get install -y
python3-pip
python3-venv
python3-dev
python3-setuptools
python3-wheel
COPY app/requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD [“python”, “main.py”]
Unfortunately I get the error:
Error failed to fetch an image or build from source: error connecting to docker: Could not find App
Using the Debug I get:
DEBUG trying remote docker daemon
DEBUG Trying ‘Buildpacks’ strategy
DEBUG no buildpack builder configured, skipping
DEBUG result image: error:
DEBUG Trying ‘Dockerfile’ strategy
DEBUG → POST GraphQL Playground
{
“query”: “mutation($input: EnsureMachineRemoteBuilderInput!) { ensureMachineRemoteBuilder(input: $input) { machine { id state ips { nodes { family kind ip } } }, app { name organization { id slug } } } }”,
“variables”: {
“input”: {
“appName”: “telebot”,
“organizationId”: null
}
}
}
DEBUG {}
DEBUG result image: error:error connecting to docker: Post “GraphQL Playground”: dial tcp [2a09:8280:1:f28:246e:d6a:949:dbbf]:443: connect: no route to host
Error failed to fetch an image or build from source: error connecting to docker: Post “GraphQL Playground”: dial tcp [2a09:8280:1:f28:246e:d6a:949:dbbf]:443: connect: no route to host
All related answers did not work for me
Thanks in advance, would realy apprechiate the help