I want to use a Docker image and run my python project but when I develop the project I want to get suggestions and support from the IntelliJ IDEA IDE. Even though I could run the project successfully, I cannot get the support from the IDE.
Here I try to print a simple hello world!
message.
Unresolved reference 'print'
Dockerfile
FROM mozilla/deepspeech-train
WORKDIR /speech-to-text-model
COPY ./src .
RUN python transcriber.py