Dockerfile
FROM python:3.9
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN apt-get update && apt-get install -y \
graphviz
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./main.py" ]
docker-compose
version: "3.8"
services:
python-mic:
build:
context: .
dockerfile: Dockerfile
container_name: python-mic
restart: unless-stopped
networks:
default:
external: true
name: laravel-vue-perceptif_travellist
Ошибка
```
gcc -pthread -shared build/temp.linux-aarch64-3.9/src/C/base.o build/temp.linux-aarch64-3.9/src/C/dense.o build/temp.linux-aarch64-3.9/src/C/sparse.o -L/usr/lib -L/usr/local/lib -lm -llapack -lblas -o build/lib.linux-aarch64-3.9/cvxopt/base.cpython-39-aarch64-linux-gnu.so
#11 126.8 /usr/bin/ld: cannot find -llapack
#11 126.8 /usr/bin/ld: cannot find -lblas
#11 126.8 collect2: error: ld returned 1 exit status
#11 126.8 error: command '/usr/bin/gcc' failed with exit code 1
#11 126.8 [end of output]
#11 126.8
#11 126.8 note: This error originates from a subprocess, and is likely not a problem with pip.
#11 126.8 error: legacy-install-failure
```
Подскажите пожалуйста, как мне можно это исправить?
поставь требуемые либы
Ставил, это не работает, поэтому вернул к исходному состоянию файл
Такая же ошибка
Обсуждают сегодня