Добрый день. Столкнулся с проблемой
docker-compose
...
volumes:
- /home/andrey/lib:/opt/lib
...
Dockerfile
FROM python:3.7-slim
RUN apt-get update
RUN apt-get install -y gcc cmake
WORKDIR .
COPY ./requirements.txt requirements.txt
RUN pip install -r requirements.txt
RUN python /opt/lib/setup.py install
CMD ["python", "/app/run.py"]
В процессе запуска вроде как должна установить питоновская либа из volumes, но я получаю
python: can't open file '/opt/lib/setup.py': [Errno 2] No such file or directory