Ubuntu – GCP Cloud Run complains "can't open file '/app/main.py': [Errno 2] No such file or directory"
I have my project wrapped up as docker containers. Please see the Dockerfile: FROM python:3.12-slim WORKDIR /app COPY requirements.txt /app/ RUN pip install --upgrade pip setuptools wheel && pip install -r requirements.txt COPY . . CMD ["python", "main.py"] And below…