Reputation: 1763
Here's my dockerfile:
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
COPY ./app /app/app
WORKDIR /app/app
RUN "pip install -r requirements.txt"
And here's my folder structure:
When I try to build the image using docker build -t myimage .
, I get the following error:
Any insight into resolving this would be appreciated.
Upvotes: 1
Views: 429