'I am trying to run my docker but i'm getting this error

dockerfile

FROM python:3.10

ADD main.py .
ADD safe.py .

RUN pip install pyTelegramBotAPI

CMD [ "python", "./main.py", "safe" ]

this is the error I'm getting when I run my docker

docker: Error response from daemon: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: ".": executable file not found in $PATH: unknown.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source