cool-easter-32542
07/30/2024, 8:22 PMFROM python:3.10
RUN mkdir -p /app
# Set the working directory in the container
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
# tun uvicorn with the main module
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]
>> ERROR: Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'Pants version 2.21.0 OS MacOS Additional info Add any other information about the problem here, such as attachments or links to gists, if relevant. pantsbuild/pants