我正在编写一个 dockerfile,其中一个依赖项只能在主目录存在时安装,但我该如何设置类似的东西呢?
ARG BUILD_FROM=raspbian/stretch:latest
FROM $BUILD_FROM
RUN apt-get -qq update \
&& apt-get -qq install -y --no-install-recommends \
apt-transport-https \
apt-utils \
dirmngr \
gnupg-curl \
mpg123 \
supervisor \
unzip \
curl \
git \
wget \
python3 \
&& pip3 install -U setuptools && pip3 install utils\
&& pip3 install -r requirements.txt
要求.txt
slugify
google-api-python-client
oauth2client
esptool
这只能安装使用pip3 install --user slugify
它需要一个我无法设置的主目录..